Fills:
1) New algorithm for connecting along the perimeters is now applied to Honeycomb, Hilbert and similar planar filling curves. 2) The old expensive path chaining is not applied if the new algorithm to connect along the perimeter lines is called afterwards.
This commit is contained in:
parent
e9fa36ea7d
commit
812cbade4d
7 changed files with 69 additions and 133 deletions
src/libslic3r
|
@ -2324,7 +2324,6 @@ static inline void fill_expolygons_generate_paths(
|
|||
{
|
||||
FillParams fill_params;
|
||||
fill_params.density = density;
|
||||
fill_params.complete = true;
|
||||
fill_params.dont_adjust = true;
|
||||
for (const ExPolygon &expoly : expolygons) {
|
||||
Surface surface(stInternal, expoly);
|
||||
|
@ -2351,7 +2350,6 @@ static inline void fill_expolygons_generate_paths(
|
|||
{
|
||||
FillParams fill_params;
|
||||
fill_params.density = density;
|
||||
fill_params.complete = true;
|
||||
fill_params.dont_adjust = true;
|
||||
for (ExPolygon &expoly : expolygons) {
|
||||
Surface surface(stInternal, std::move(expoly));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue