2012-09-23 00:52:31 +00:00
|
|
|
|
package Slic3r::Layer::Region;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-03-29 22:49:58 +00:00
|
|
|
|
use List::Util qw(sum first);
|
2014-05-12 19:49:17 +00:00
|
|
|
|
use Slic3r::ExtrusionLoop ':roles';
|
2012-09-22 17:04:36 +00:00
|
|
|
|
use Slic3r::ExtrusionPath ':roles';
|
2013-12-30 17:28:41 +00:00
|
|
|
|
use Slic3r::Flow ':roles';
|
2013-11-23 20:47:33 +00:00
|
|
|
|
use Slic3r::Geometry qw(PI A B scale unscale chained_path points_coincide);
|
2013-08-26 15:58:37 +00:00
|
|
|
|
use Slic3r::Geometry::Clipper qw(union_ex diff_ex intersection_ex
|
2014-03-09 20:26:03 +00:00
|
|
|
|
offset offset_ex offset2 offset2_ex union_pt diff intersection
|
2014-05-08 09:07:37 +00:00
|
|
|
|
union diff intersection_ppl diff_ppl);
|
2012-09-22 17:04:36 +00:00
|
|
|
|
use Slic3r::Surface ':types';
|
|
|
|
|
|
|
|
|
|
|
2014-05-06 08:07:18 +00:00
|
|
|
|
# TODO: lazy
|
|
|
|
|
sub infill_area_threshold {
|
2013-02-18 10:52:47 +00:00
|
|
|
|
my $self = shift;
|
2013-12-30 17:28:41 +00:00
|
|
|
|
return $self->flow(FLOW_ROLE_SOLID_INFILL)->scaled_spacing ** 2;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-06 08:07:18 +00:00
|
|
|
|
sub id { return $_[0]->layer->id; }
|
|
|
|
|
sub slice_z { return $_[0]->layer->slice_z; }
|
|
|
|
|
sub print_z { return $_[0]->layer->print_z; }
|
|
|
|
|
sub height { return $_[0]->layer->height; }
|
|
|
|
|
sub object { return $_[0]->layer->object; }
|
|
|
|
|
sub print { return $_[0]->layer->print; }
|
|
|
|
|
|
|
|
|
|
sub config { return $_[0]->region->config; }
|
|
|
|
|
|
2013-12-30 17:28:41 +00:00
|
|
|
|
sub flow {
|
|
|
|
|
my ($self, $role, $bridge, $width) = @_;
|
|
|
|
|
return $self->region->flow(
|
|
|
|
|
$role,
|
|
|
|
|
$self->layer->height,
|
|
|
|
|
$bridge // 0,
|
|
|
|
|
$self->layer->id == 0,
|
|
|
|
|
$width,
|
2014-04-25 17:39:27 +00:00
|
|
|
|
$self->object,
|
2013-12-30 17:28:41 +00:00
|
|
|
|
);
|
2013-02-18 10:52:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
|
sub make_perimeters {
|
|
|
|
|
my $self = shift;
|
|
|
|
|
|
2014-06-09 19:14:48 +00:00
|
|
|
|
# external perimeters
|
|
|
|
|
my $ext_perimeter_flow = $self->flow(FLOW_ROLE_EXTERNAL_PERIMETER);
|
|
|
|
|
my $ext_mm3_per_mm = $ext_perimeter_flow->mm3_per_mm($self->height);
|
|
|
|
|
my $ext_pwidth = $ext_perimeter_flow->scaled_width;
|
|
|
|
|
my $ext_pspacing = $ext_perimeter_flow->scaled_spacing;
|
|
|
|
|
|
|
|
|
|
# other perimeters
|
2013-12-30 17:28:41 +00:00
|
|
|
|
my $perimeter_flow = $self->flow(FLOW_ROLE_PERIMETER);
|
2014-01-03 17:27:46 +00:00
|
|
|
|
my $mm3_per_mm = $perimeter_flow->mm3_per_mm($self->height);
|
2013-12-30 17:28:41 +00:00
|
|
|
|
my $pwidth = $perimeter_flow->scaled_width;
|
|
|
|
|
my $pspacing = $perimeter_flow->scaled_spacing;
|
2014-06-09 19:14:48 +00:00
|
|
|
|
|
|
|
|
|
# overhang perimeters
|
|
|
|
|
my $overhang_flow = $self->region->flow(FLOW_ROLE_PERIMETER, -1, 1, 0, undef, $self->layer->object);
|
|
|
|
|
my $mm3_per_mm_overhang = $overhang_flow->mm3_per_mm(-1);
|
|
|
|
|
|
|
|
|
|
# solid infill
|
2014-03-09 20:26:03 +00:00
|
|
|
|
my $solid_infill_flow = $self->flow(FLOW_ROLE_SOLID_INFILL);
|
|
|
|
|
my $ispacing = $solid_infill_flow->scaled_spacing;
|
2013-12-30 17:28:41 +00:00
|
|
|
|
my $gap_area_threshold = $pwidth ** 2;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2014-04-14 23:41:40 +00:00
|
|
|
|
# Calculate the minimum required spacing between two adjacent traces.
|
|
|
|
|
# This should be equal to the nominal flow spacing but we experiment
|
|
|
|
|
# with some tolerance in order to avoid triggering medial axis when
|
|
|
|
|
# some squishing might work. Loops are still spaced by the entire
|
|
|
|
|
# flow spacing; this only applies to collapsing parts.
|
2014-06-09 19:14:48 +00:00
|
|
|
|
my $min_spacing = $pspacing * (1 - &Slic3r::INSET_OVERLAP_TOLERANCE);
|
|
|
|
|
my $ext_min_spacing = $ext_pspacing * (1 - &Slic3r::INSET_OVERLAP_TOLERANCE);
|
2014-04-14 23:41:40 +00:00
|
|
|
|
|
2013-07-18 20:29:12 +00:00
|
|
|
|
$self->perimeters->clear;
|
2013-07-14 12:56:43 +00:00
|
|
|
|
$self->fill_surfaces->clear;
|
2013-07-18 20:29:12 +00:00
|
|
|
|
$self->thin_fills->clear;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-05-11 19:05:29 +00:00
|
|
|
|
my @contours = (); # array of Polygons with ccw orientation
|
|
|
|
|
my @holes = (); # array of Polygons with cw orientation
|
2013-11-18 16:06:08 +00:00
|
|
|
|
my @thin_walls = (); # array of ExPolygons
|
2013-05-11 19:05:29 +00:00
|
|
|
|
|
2013-05-13 11:18:58 +00:00
|
|
|
|
# we need to process each island separately because we might have different
|
|
|
|
|
# extra perimeters for each one
|
2013-05-11 19:05:29 +00:00
|
|
|
|
foreach my $surface (@{$self->slices}) {
|
|
|
|
|
# detect how many perimeters must be generated for this island
|
2013-08-25 12:37:50 +00:00
|
|
|
|
my $loop_number = $self->config->perimeters + ($surface->extra_perimeters || 0);
|
2012-11-01 10:51:52 +00:00
|
|
|
|
|
2013-05-11 19:05:29 +00:00
|
|
|
|
my @last = @{$surface->expolygon};
|
2014-04-18 15:30:35 +00:00
|
|
|
|
my @gaps = (); # array of ExPolygons
|
2013-12-23 20:22:32 +00:00
|
|
|
|
if ($loop_number > 0) {
|
|
|
|
|
# we loop one time more than needed in order to find gaps after the last perimeter was applied
|
|
|
|
|
for my $i (1 .. ($loop_number+1)) { # outer loop is 1
|
|
|
|
|
my @offsets = ();
|
|
|
|
|
if ($i == 1) {
|
|
|
|
|
# the minimum thickness of a single loop is:
|
2014-06-09 19:14:48 +00:00
|
|
|
|
# ext_width/2 + ext_spacing/2 + spacing/2 + width/2
|
2014-04-14 23:41:40 +00:00
|
|
|
|
@offsets = @{offset2(
|
|
|
|
|
\@last,
|
2014-06-09 19:14:48 +00:00
|
|
|
|
-(0.5*$ext_pwidth + 0.5*$ext_min_spacing - 1),
|
|
|
|
|
+(0.5*$ext_min_spacing - 1),
|
2014-04-14 23:41:40 +00:00
|
|
|
|
)};
|
2014-03-01 23:28:10 +00:00
|
|
|
|
|
2013-12-23 20:22:32 +00:00
|
|
|
|
# look for thin walls
|
|
|
|
|
if ($self->config->thin_walls) {
|
|
|
|
|
my $diff = diff_ex(
|
|
|
|
|
\@last,
|
2014-06-09 19:14:48 +00:00
|
|
|
|
offset(\@offsets, +0.5*$ext_pwidth),
|
2014-03-04 23:45:17 +00:00
|
|
|
|
1, # medial axis requires non-overlapping geometry
|
2013-12-23 20:22:32 +00:00
|
|
|
|
);
|
2014-03-01 23:28:10 +00:00
|
|
|
|
push @thin_walls, @$diff;
|
2013-12-23 20:22:32 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2014-06-09 19:14:48 +00:00
|
|
|
|
my $distance = ($i == 2)
|
|
|
|
|
? (0.5*$ext_pspacing + 0.5*$pspacing)
|
|
|
|
|
: (1.0*$pspacing);
|
|
|
|
|
|
2014-04-14 23:41:40 +00:00
|
|
|
|
@offsets = @{offset2(
|
|
|
|
|
\@last,
|
2014-06-09 19:14:48 +00:00
|
|
|
|
-($distance + 0.5*$min_spacing - 1),
|
2014-04-14 23:41:40 +00:00
|
|
|
|
+(0.5*$min_spacing - 1),
|
|
|
|
|
)};
|
2013-11-18 16:06:08 +00:00
|
|
|
|
|
2013-12-23 20:22:32 +00:00
|
|
|
|
# look for gaps
|
2014-05-15 16:49:11 +00:00
|
|
|
|
if ($self->region->config->gap_fill_speed > 0 && $self->config->fill_density > 0) {
|
2014-04-14 22:57:43 +00:00
|
|
|
|
# not using safety offset here would "detect" very narrow gaps
|
|
|
|
|
# (but still long enough to escape the area threshold) that gap fill
|
|
|
|
|
# won't be able to fill but we'd still remove from infill area
|
2013-12-23 20:22:32 +00:00
|
|
|
|
my $diff = diff_ex(
|
|
|
|
|
offset(\@last, -0.5*$pspacing),
|
2014-04-14 22:57:43 +00:00
|
|
|
|
offset(\@offsets, +0.5*$pspacing + 10), # safety offset
|
2013-12-23 20:22:32 +00:00
|
|
|
|
);
|
2014-04-18 15:30:35 +00:00
|
|
|
|
push @gaps, grep abs($_->area) >= $gap_area_threshold, @$diff;
|
2013-12-23 20:22:32 +00:00
|
|
|
|
}
|
2013-11-18 16:06:08 +00:00
|
|
|
|
}
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-12-23 20:22:32 +00:00
|
|
|
|
last if !@offsets;
|
|
|
|
|
last if $i > $loop_number; # we were only looking for gaps this time
|
|
|
|
|
|
|
|
|
|
# clone polygons because these ExPolygons will go out of scope very soon
|
|
|
|
|
@last = @offsets;
|
|
|
|
|
foreach my $polygon (@offsets) {
|
|
|
|
|
if ($polygon->is_counter_clockwise) {
|
|
|
|
|
push @contours, $polygon;
|
|
|
|
|
} else {
|
|
|
|
|
push @holes, $polygon;
|
|
|
|
|
}
|
2013-11-18 16:06:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
2014-04-18 15:30:35 +00:00
|
|
|
|
|
2014-04-14 23:41:40 +00:00
|
|
|
|
# fill gaps
|
|
|
|
|
if (@gaps) {
|
|
|
|
|
if (0) {
|
|
|
|
|
require "Slic3r/SVG.pm";
|
|
|
|
|
Slic3r::SVG::output(
|
|
|
|
|
"gaps.svg",
|
|
|
|
|
expolygons => \@gaps,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# where $pwidth < thickness < 2*$pspacing, infill with width = 1.5*$pwidth
|
|
|
|
|
# where 0.5*$pwidth < thickness < $pwidth, infill with width = 0.5*$pwidth
|
|
|
|
|
my @gap_sizes = (
|
|
|
|
|
[ $pwidth, 2*$pspacing, unscale 1.5*$pwidth ],
|
|
|
|
|
[ 0.5*$pwidth, $pwidth, unscale 0.5*$pwidth ],
|
|
|
|
|
);
|
|
|
|
|
foreach my $gap_size (@gap_sizes) {
|
|
|
|
|
my @gap_fill = $self->_fill_gaps(@$gap_size, \@gaps);
|
|
|
|
|
$self->thin_fills->append(@gap_fill);
|
|
|
|
|
|
|
|
|
|
# Make sure we don't infill narrow parts that are already gap-filled
|
|
|
|
|
# (we only consider this surface's gaps to reduce the diff() complexity).
|
|
|
|
|
# Growing actual extrusions ensures that gaps not filled by medial axis
|
|
|
|
|
# are not subtracted from fill surfaces (they might be too short gaps
|
|
|
|
|
# that medial axis skips but infill might join with other infill regions
|
|
|
|
|
# and use zigzag).
|
|
|
|
|
my $w = $gap_size->[2];
|
|
|
|
|
my @filled = map {
|
2014-05-26 10:09:13 +00:00
|
|
|
|
@{($_->isa('Slic3r::ExtrusionLoop') ? $_->polygon->split_at_first_point : $_->polyline)
|
2014-04-14 23:41:40 +00:00
|
|
|
|
->grow(scale $w/2)};
|
|
|
|
|
} @gap_fill;
|
|
|
|
|
@last = @{diff(\@last, \@filled)};
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-09 14:18:21 +00:00
|
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
|
# create one more offset to be used as boundary for fill
|
2013-05-13 11:18:58 +00:00
|
|
|
|
# we offset by half the perimeter spacing (to get to the actual infill boundary)
|
2013-08-09 14:18:21 +00:00
|
|
|
|
# and then we offset back and forth by half the infill spacing to only consider the
|
2013-05-13 11:18:58 +00:00
|
|
|
|
# non-collapsing regions
|
2014-04-14 23:41:40 +00:00
|
|
|
|
my $min_perimeter_infill_spacing = $ispacing * (1 - &Slic3r::INSET_OVERLAP_TOLERANCE);
|
2013-07-14 12:56:43 +00:00
|
|
|
|
$self->fill_surfaces->append(
|
2013-12-28 14:32:43 +00:00
|
|
|
|
map Slic3r::Surface->new(expolygon => $_, surface_type => S_TYPE_INTERNAL), # use a bogus surface type
|
2013-08-08 00:10:34 +00:00
|
|
|
|
@{offset2_ex(
|
2013-11-22 01:16:10 +00:00
|
|
|
|
[ map @{$_->simplify_p(&Slic3r::SCALED_RESOLUTION)}, @{union_ex(\@last)} ],
|
2014-04-14 23:41:40 +00:00
|
|
|
|
-($pspacing/2 + $min_perimeter_infill_spacing/2),
|
|
|
|
|
+$min_perimeter_infill_spacing/2,
|
2013-08-16 07:09:56 +00:00
|
|
|
|
)}
|
2013-07-14 12:56:43 +00:00
|
|
|
|
);
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-18 15:30:35 +00:00
|
|
|
|
|
2014-03-09 19:19:30 +00:00
|
|
|
|
# process thin walls by collapsing slices to single passes
|
|
|
|
|
my @thin_wall_polylines = ();
|
|
|
|
|
if (@thin_walls) {
|
|
|
|
|
# the following offset2 ensures almost nothing in @thin_walls is narrower than $min_width
|
|
|
|
|
# (actually, something larger than that still may exist due to mitering or other causes)
|
|
|
|
|
my $min_width = $pwidth / 4;
|
|
|
|
|
@thin_walls = @{offset2_ex([ map @$_, @thin_walls ], -$min_width/2, +$min_width/2)};
|
|
|
|
|
|
|
|
|
|
# the maximum thickness of our thin wall area is equal to the minimum thickness of a single loop
|
|
|
|
|
@thin_wall_polylines = map @{$_->medial_axis($pwidth + $pspacing, $min_width)}, @thin_walls;
|
|
|
|
|
Slic3r::debugf " %d thin walls detected\n", scalar(@thin_wall_polylines) if $Slic3r::debug;
|
|
|
|
|
|
|
|
|
|
if (0) {
|
|
|
|
|
require "Slic3r/SVG.pm";
|
|
|
|
|
Slic3r::SVG::output(
|
|
|
|
|
"medial_axis.svg",
|
|
|
|
|
no_arrows => 1,
|
|
|
|
|
expolygons => \@thin_walls,
|
|
|
|
|
green_polylines => [ map $_->polygon->split_at_first_point, @{$self->perimeters} ],
|
|
|
|
|
red_polylines => \@thin_wall_polylines,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-11 19:05:29 +00:00
|
|
|
|
# find nesting hierarchies separately for contours and holes
|
2013-08-26 16:37:19 +00:00
|
|
|
|
my $contours_pt = union_pt(\@contours);
|
|
|
|
|
my $holes_pt = union_pt(\@holes);
|
2013-05-11 19:05:29 +00:00
|
|
|
|
|
2014-05-08 09:07:37 +00:00
|
|
|
|
# prepare grown lower layer slices for overhang detection
|
|
|
|
|
my $lower_slices = Slic3r::ExPolygon::Collection->new;
|
2014-05-12 21:02:33 +00:00
|
|
|
|
if ($self->layer->lower_layer && $self->region->config->overhangs) {
|
2014-05-08 09:07:37 +00:00
|
|
|
|
# We consider overhang any part where the entire nozzle diameter is not supported by the
|
|
|
|
|
# lower layer, so we take lower slices and offset them by half the nozzle diameter used
|
|
|
|
|
# in the current layer
|
|
|
|
|
my $nozzle_diameter = $self->layer->print->config->get_at('nozzle_diameter', $self->region->config->perimeter_extruder-1);
|
|
|
|
|
$lower_slices->append(
|
|
|
|
|
@{offset_ex([ map @$_, @{$self->layer->lower_layer->slices} ], scale +$nozzle_diameter/2)},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
my $lower_slices_p = $lower_slices->polygons;
|
|
|
|
|
|
2013-05-11 19:30:26 +00:00
|
|
|
|
# prepare a coderef for traversing the PolyTree object
|
2013-05-11 19:05:29 +00:00
|
|
|
|
# external contours are root items of $contours_pt
|
|
|
|
|
# internal contours are the ones next to external
|
2013-05-11 19:30:26 +00:00
|
|
|
|
my $traverse;
|
|
|
|
|
$traverse = sub {
|
|
|
|
|
my ($polynodes, $depth, $is_contour) = @_;
|
|
|
|
|
|
2014-03-09 19:19:30 +00:00
|
|
|
|
# convert all polynodes to ExtrusionLoop objects
|
|
|
|
|
my $collection = Slic3r::ExtrusionPath::Collection->new;
|
|
|
|
|
my @children = ();
|
|
|
|
|
foreach my $polynode (@$polynodes) {
|
|
|
|
|
my $polygon = ($polynode->{outer} // $polynode->{hole})->clone;
|
2013-05-14 18:19:42 +00:00
|
|
|
|
|
2014-05-12 19:49:17 +00:00
|
|
|
|
my $role = EXTR_ROLE_PERIMETER;
|
|
|
|
|
my $loop_role = EXTRL_ROLE_DEFAULT;
|
2014-05-22 17:34:49 +00:00
|
|
|
|
|
|
|
|
|
my $root_level = $depth == 0;
|
|
|
|
|
my $no_children = !@{ $polynode->{children} };
|
|
|
|
|
my $is_external = $is_contour ? $root_level : $no_children;
|
|
|
|
|
my $is_internal = $is_contour ? $no_children : $root_level;
|
|
|
|
|
if ($is_external) {
|
2013-05-13 10:52:57 +00:00
|
|
|
|
# external perimeters are root level in case of contours
|
|
|
|
|
# and items with no children in case of holes
|
2014-05-12 19:49:17 +00:00
|
|
|
|
$role = EXTR_ROLE_EXTERNAL_PERIMETER;
|
|
|
|
|
$loop_role = EXTRL_ROLE_EXTERNAL_PERIMETER;
|
2014-05-22 17:34:49 +00:00
|
|
|
|
} elsif ($is_contour && $is_internal) {
|
|
|
|
|
# internal perimeters are root level in case of holes
|
|
|
|
|
# and items with no children in case of contours
|
2014-05-12 19:49:17 +00:00
|
|
|
|
$loop_role = EXTRL_ROLE_CONTOUR_INTERNAL_PERIMETER;
|
2013-05-11 19:30:26 +00:00
|
|
|
|
}
|
2013-05-14 18:19:42 +00:00
|
|
|
|
|
2014-05-08 09:07:37 +00:00
|
|
|
|
# detect overhanging/bridging perimeters
|
|
|
|
|
my @paths = ();
|
2014-05-12 21:02:33 +00:00
|
|
|
|
if ($self->region->config->overhangs && $lower_slices->count > 0) {
|
2014-05-08 09:07:37 +00:00
|
|
|
|
# get non-overhang paths by intersecting this loop with the grown lower slices
|
|
|
|
|
foreach my $polyline (@{ intersection_ppl([ $polygon ], $lower_slices_p) }) {
|
|
|
|
|
push @paths, Slic3r::ExtrusionPath->new(
|
|
|
|
|
polyline => $polyline,
|
|
|
|
|
role => $role,
|
2014-06-09 19:14:48 +00:00
|
|
|
|
mm3_per_mm => ($is_external ? $ext_mm3_per_mm : $mm3_per_mm),
|
|
|
|
|
width => ($is_external ? $ext_perimeter_flow->width : $perimeter_flow->width),
|
2014-05-08 09:07:37 +00:00
|
|
|
|
height => $self->height,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# get overhang paths by checking what parts of this loop fall
|
|
|
|
|
# outside the grown lower slices (thus where the distance between
|
|
|
|
|
# the loop centerline and original lower slices is >= half nozzle diameter
|
|
|
|
|
foreach my $polyline (@{ diff_ppl([ $polygon ], $lower_slices_p) }) {
|
|
|
|
|
push @paths, Slic3r::ExtrusionPath->new(
|
|
|
|
|
polyline => $polyline,
|
|
|
|
|
role => EXTR_ROLE_OVERHANG_PERIMETER,
|
|
|
|
|
mm3_per_mm => $mm3_per_mm_overhang,
|
|
|
|
|
width => $overhang_flow->width,
|
|
|
|
|
height => $self->height,
|
|
|
|
|
);
|
|
|
|
|
}
|
2014-05-12 20:28:26 +00:00
|
|
|
|
|
2014-05-08 09:07:37 +00:00
|
|
|
|
# reapply the nearest point search for starting point
|
|
|
|
|
# (clone because the collection gets DESTROY'ed)
|
|
|
|
|
# We allow polyline reversal because Clipper may have randomly
|
|
|
|
|
# reversed polylines during clipping.
|
|
|
|
|
my $collection = Slic3r::ExtrusionPath::Collection->new(@paths);
|
|
|
|
|
@paths = map $_->clone, @{$collection->chained_path(0)};
|
|
|
|
|
} else {
|
|
|
|
|
push @paths, Slic3r::ExtrusionPath->new(
|
|
|
|
|
polyline => $polygon->split_at_first_point,
|
|
|
|
|
role => $role,
|
|
|
|
|
mm3_per_mm => $mm3_per_mm,
|
|
|
|
|
width => $perimeter_flow->width,
|
|
|
|
|
height => $self->height,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
my $loop = Slic3r::ExtrusionLoop->new_from_paths(@paths);
|
2014-05-12 19:49:17 +00:00
|
|
|
|
$loop->role($loop_role);
|
2014-05-08 09:07:37 +00:00
|
|
|
|
|
|
|
|
|
# return ccw contours and cw holes
|
|
|
|
|
# GCode.pm will convert all of them to ccw, but it needs to know
|
|
|
|
|
# what the holes are in order to compute the correct inwards move
|
|
|
|
|
# We do this on the final Loop object instead of the polygon because
|
|
|
|
|
# overhang clipping might have reversed its order since Clipper does
|
|
|
|
|
# not preserve polyline orientation.
|
|
|
|
|
if ($is_contour) {
|
|
|
|
|
$loop->make_counter_clockwise;
|
|
|
|
|
} else {
|
|
|
|
|
$loop->make_clockwise;
|
|
|
|
|
}
|
|
|
|
|
$collection->append($loop);
|
2014-03-09 19:19:30 +00:00
|
|
|
|
|
|
|
|
|
# save the children
|
|
|
|
|
push @children, $polynode->{children};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# if we're handling the top-level contours, add thin walls as candidates too
|
|
|
|
|
# in order to include them in the nearest-neighbor search
|
|
|
|
|
if ($is_contour && $depth == 0) {
|
|
|
|
|
foreach my $polyline (@thin_wall_polylines) {
|
|
|
|
|
$collection->append(Slic3r::ExtrusionPath->new(
|
|
|
|
|
polyline => $polyline,
|
|
|
|
|
role => EXTR_ROLE_EXTERNAL_PERIMETER,
|
|
|
|
|
mm3_per_mm => $mm3_per_mm,
|
2014-04-29 21:15:36 +00:00
|
|
|
|
width => $perimeter_flow->width,
|
|
|
|
|
height => $self->height,
|
2014-03-09 19:19:30 +00:00
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# use a nearest neighbor search to order these children
|
|
|
|
|
# TODO: supply second argument to chained_path() too?
|
2014-04-25 17:11:17 +00:00
|
|
|
|
# Optimization: since islands are going to be sorted by slice anyway in the
|
|
|
|
|
# G-code export process, we skip chained_path here
|
|
|
|
|
my ($sorted_collection, @orig_indices);
|
|
|
|
|
if ($is_contour && $depth == 0) {
|
|
|
|
|
$sorted_collection = $collection;
|
|
|
|
|
@orig_indices = (0..$#$sorted_collection);
|
|
|
|
|
} else {
|
|
|
|
|
$sorted_collection = $collection->chained_path_indices(0);
|
|
|
|
|
@orig_indices = @{$sorted_collection->orig_indices};
|
|
|
|
|
}
|
2014-03-09 19:19:30 +00:00
|
|
|
|
|
|
|
|
|
my @loops = ();
|
|
|
|
|
foreach my $loop (@$sorted_collection) {
|
|
|
|
|
my $orig_index = shift @orig_indices;
|
|
|
|
|
|
|
|
|
|
if ($loop->isa('Slic3r::ExtrusionPath')) {
|
|
|
|
|
push @loops, $loop->clone;
|
|
|
|
|
} else {
|
|
|
|
|
# if this is an external contour find all holes belonging to this contour(s)
|
|
|
|
|
# and prepend them
|
|
|
|
|
if ($is_contour && $depth == 0) {
|
|
|
|
|
# $loop is the outermost loop of an island
|
|
|
|
|
my @holes = ();
|
|
|
|
|
for (my $i = 0; $i <= $#$holes_pt; $i++) {
|
2014-03-11 18:19:34 +00:00
|
|
|
|
if ($loop->polygon->contains_point($holes_pt->[$i]{outer}->first_point)) {
|
2014-03-09 19:19:30 +00:00
|
|
|
|
push @holes, splice @$holes_pt, $i, 1; # remove from candidates to reduce complexity
|
|
|
|
|
$i--;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-23 18:55:31 +00:00
|
|
|
|
|
|
|
|
|
# order holes efficiently
|
|
|
|
|
@holes = @holes[@{chained_path([ map {($_->{outer} // $_->{hole})->first_point} @holes ])}];
|
|
|
|
|
|
2014-03-09 19:19:30 +00:00
|
|
|
|
push @loops, reverse map $traverse->([$_], 0, 0), @holes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# traverse children and prepend them to this loop
|
|
|
|
|
push @loops, $traverse->($children[$orig_index], $depth+1, $is_contour);
|
|
|
|
|
push @loops, $loop->clone;
|
|
|
|
|
}
|
2013-05-11 19:30:26 +00:00
|
|
|
|
}
|
|
|
|
|
return @loops;
|
|
|
|
|
};
|
2013-05-11 19:05:29 +00:00
|
|
|
|
|
2013-05-11 19:30:26 +00:00
|
|
|
|
# order loops from inner to outer (in terms of object slices)
|
2013-11-23 21:43:30 +00:00
|
|
|
|
my @loops = $traverse->($contours_pt, 0, 1);
|
2012-10-24 10:04:44 +00:00
|
|
|
|
|
2013-05-11 19:30:26 +00:00
|
|
|
|
# if brim will be printed, reverse the order of perimeters so that
|
|
|
|
|
# we continue inwards after having finished the brim
|
|
|
|
|
# TODO: add test for perimeter order
|
|
|
|
|
@loops = reverse @loops
|
2014-06-11 20:15:28 +00:00
|
|
|
|
if $self->region->config->external_perimeters_first
|
2014-01-02 09:44:54 +00:00
|
|
|
|
|| ($self->layer->id == 0 && $self->print->config->brim_width > 0);
|
2013-05-13 11:18:58 +00:00
|
|
|
|
|
|
|
|
|
# append perimeters
|
2013-07-18 20:29:12 +00:00
|
|
|
|
$self->perimeters->append(@loops);
|
2014-04-14 23:41:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub _fill_gaps {
|
|
|
|
|
my ($self, $min, $max, $w, $gaps) = @_;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2014-04-14 23:41:40 +00:00
|
|
|
|
my $this = diff_ex(
|
|
|
|
|
offset2([ map @$_, @$gaps ], -$min/2, +$min/2),
|
|
|
|
|
offset2([ map @$_, @$gaps ], -$max/2, +$max/2),
|
|
|
|
|
1,
|
|
|
|
|
);
|
2014-03-09 20:26:03 +00:00
|
|
|
|
|
2014-04-14 23:41:40 +00:00
|
|
|
|
my $flow = $self->flow(FLOW_ROLE_SOLID_INFILL, 0, $w);
|
|
|
|
|
my %path_args = (
|
|
|
|
|
role => EXTR_ROLE_GAPFILL,
|
|
|
|
|
mm3_per_mm => $flow->mm3_per_mm($self->height),
|
2014-04-29 21:15:36 +00:00
|
|
|
|
width => $flow->width,
|
|
|
|
|
height => $self->height,
|
2014-04-14 23:41:40 +00:00
|
|
|
|
);
|
|
|
|
|
my @polylines = map @{$_->medial_axis($max, $min/2)}, @$this;
|
|
|
|
|
|
|
|
|
|
Slic3r::debugf " %d gaps filled with extrusion width = %s\n", scalar @$this, $w
|
|
|
|
|
if @$this;
|
|
|
|
|
|
2014-05-08 09:07:37 +00:00
|
|
|
|
for my $i (0..$#polylines) {
|
|
|
|
|
if ($polylines[$i]->isa('Slic3r::Polygon')) {
|
|
|
|
|
my $loop = Slic3r::ExtrusionLoop->new;
|
|
|
|
|
$loop->append(Slic3r::ExtrusionPath->new(polyline => $polylines[$i]->split_at_first_point, %path_args));
|
|
|
|
|
$polylines[$i] = $loop;
|
2014-05-26 10:09:13 +00:00
|
|
|
|
} elsif ($polylines[$i]->is_valid && $polylines[$i]->first_point->coincides_with($polylines[$i]->last_point)) {
|
|
|
|
|
# since medial_axis() now returns only Polyline objects, detect loops here
|
|
|
|
|
my $loop = Slic3r::ExtrusionLoop->new;
|
|
|
|
|
$loop->append(Slic3r::ExtrusionPath->new(polyline => $polylines[$i], %path_args));
|
|
|
|
|
$polylines[$i] = $loop;
|
2014-05-08 09:07:37 +00:00
|
|
|
|
} else {
|
|
|
|
|
$polylines[$i] = Slic3r::ExtrusionPath->new(polyline => $polylines[$i], %path_args);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return @polylines;
|
2013-05-13 11:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
|
sub prepare_fill_surfaces {
|
|
|
|
|
my $self = shift;
|
|
|
|
|
|
2014-06-11 15:51:18 +00:00
|
|
|
|
# Note: in order to make the psPrepareInfill step idempotent, we should never
|
|
|
|
|
# alter fill_surfaces boundaries on which our idempotency relies since that's
|
|
|
|
|
# the only meaningful information returned by psPerimeters.
|
|
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
|
# if no solid layers are requested, turn top/bottom surfaces to internal
|
2013-08-25 12:37:50 +00:00
|
|
|
|
if ($self->config->top_solid_layers == 0) {
|
2013-09-06 16:36:38 +00:00
|
|
|
|
$_->surface_type(S_TYPE_INTERNAL) for @{$self->fill_surfaces->filter_by_type(S_TYPE_TOP)};
|
2012-11-16 11:37:47 +00:00
|
|
|
|
}
|
2013-08-25 12:37:50 +00:00
|
|
|
|
if ($self->config->bottom_solid_layers == 0) {
|
2014-03-25 00:11:28 +00:00
|
|
|
|
$_->surface_type(S_TYPE_INTERNAL)
|
|
|
|
|
for @{$self->fill_surfaces->filter_by_type(S_TYPE_BOTTOM)}, @{$self->fill_surfaces->filter_by_type(S_TYPE_BOTTOMBRIDGE)};
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-07 14:47:32 +00:00
|
|
|
|
# turn too small internal regions into solid regions according to the user setting
|
2013-08-25 17:59:42 +00:00
|
|
|
|
if ($self->config->fill_density > 0) {
|
2013-08-25 12:37:50 +00:00
|
|
|
|
my $min_area = scale scale $self->config->solid_infill_below_area; # scaling an area requires two calls!
|
2013-09-06 16:36:38 +00:00
|
|
|
|
$_->surface_type(S_TYPE_INTERNALSOLID)
|
|
|
|
|
for grep { $_->area <= $min_area } @{$self->fill_surfaces->filter_by_type(S_TYPE_INTERNAL)};
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-07 14:47:32 +00:00
|
|
|
|
sub process_external_surfaces {
|
2013-11-11 19:37:06 +00:00
|
|
|
|
my ($self, $lower_layer) = @_;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-09-06 16:36:38 +00:00
|
|
|
|
my @surfaces = @{$self->fill_surfaces};
|
2013-08-13 07:45:33 +00:00
|
|
|
|
my $margin = scale &Slic3r::EXTERNAL_INFILL_MARGIN;
|
2013-07-26 10:31:25 +00:00
|
|
|
|
|
|
|
|
|
my @bottom = ();
|
2014-03-25 00:11:28 +00:00
|
|
|
|
foreach my $surface (grep $_->is_bottom, @surfaces) {
|
2013-08-08 00:10:34 +00:00
|
|
|
|
my $grown = $surface->expolygon->offset_ex(+$margin);
|
2013-04-29 13:53:15 +00:00
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
# detect bridge direction before merging grown surfaces otherwise adjacent bridges
|
|
|
|
|
# would get merged into a single one while they need different directions
|
2013-07-29 09:54:32 +00:00
|
|
|
|
# also, supply the original expolygon instead of the grown one, because in case
|
|
|
|
|
# of very thin (but still working) anchors, the grown expolygon would go beyond them
|
2014-04-07 21:18:11 +00:00
|
|
|
|
my $angle;
|
|
|
|
|
if ($lower_layer) {
|
2014-04-21 22:59:14 +00:00
|
|
|
|
my $bridge_detector = Slic3r::Layer::BridgeDetector->new(
|
|
|
|
|
expolygon => $surface->expolygon,
|
2014-04-07 21:18:11 +00:00
|
|
|
|
lower_slices => $lower_layer->slices,
|
2014-04-21 22:59:14 +00:00
|
|
|
|
extrusion_width => $self->flow(FLOW_ROLE_INFILL, $self->height, 1)->scaled_width,
|
2014-04-07 21:18:11 +00:00
|
|
|
|
);
|
|
|
|
|
Slic3r::debugf "Processing bridge at layer %d:\n", $self->id;
|
2014-04-21 22:59:14 +00:00
|
|
|
|
$angle = $bridge_detector->detect_angle;
|
2014-04-26 14:07:43 +00:00
|
|
|
|
|
|
|
|
|
if (defined $angle && $self->object->config->support_material) {
|
|
|
|
|
$self->bridged->append(@{ $bridge_detector->coverage($angle) });
|
2014-04-26 15:19:50 +00:00
|
|
|
|
$self->unsupported_bridge_edges->append(@{ $bridge_detector->unsupported_edges });
|
2014-04-26 14:07:43 +00:00
|
|
|
|
}
|
2014-04-07 21:18:11 +00:00
|
|
|
|
}
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-08-08 00:10:34 +00:00
|
|
|
|
push @bottom, map $surface->clone(expolygon => $_, bridge_angle => $angle), @$grown;
|
2013-07-26 10:31:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
my @top = ();
|
2013-09-06 16:36:38 +00:00
|
|
|
|
foreach my $surface (grep $_->surface_type == S_TYPE_TOP, @surfaces) {
|
2013-03-07 14:47:32 +00:00
|
|
|
|
# give priority to bottom surfaces
|
2013-07-26 10:31:25 +00:00
|
|
|
|
my $grown = diff_ex(
|
2013-08-08 00:10:34 +00:00
|
|
|
|
$surface->expolygon->offset(+$margin),
|
2013-07-26 10:31:25 +00:00
|
|
|
|
[ map $_->p, @bottom ],
|
|
|
|
|
);
|
|
|
|
|
push @top, map $surface->clone(expolygon => $_), @$grown;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# if we're slicing with no infill, we can't extend external surfaces
|
|
|
|
|
# over non-existent infill
|
2013-11-11 19:37:06 +00:00
|
|
|
|
my @fill_boundaries = $self->config->fill_density > 0
|
2013-09-06 16:36:38 +00:00
|
|
|
|
? @surfaces
|
|
|
|
|
: grep $_->surface_type != S_TYPE_INTERNAL, @surfaces;
|
2013-07-26 10:31:25 +00:00
|
|
|
|
|
|
|
|
|
# intersect the grown surfaces with the actual fill boundaries
|
|
|
|
|
my @new_surfaces = ();
|
2013-11-23 17:15:59 +00:00
|
|
|
|
foreach my $group (@{Slic3r::Surface::Collection->new(@top, @bottom)->group}) {
|
2013-07-26 10:31:25 +00:00
|
|
|
|
push @new_surfaces,
|
|
|
|
|
map $group->[0]->clone(expolygon => $_),
|
|
|
|
|
@{intersection_ex(
|
2013-03-07 14:47:32 +00:00
|
|
|
|
[ map $_->p, @$group ],
|
2013-07-26 10:31:25 +00:00
|
|
|
|
[ map $_->p, @fill_boundaries ],
|
|
|
|
|
1, # to ensure adjacent expolygons are unified
|
2013-03-07 14:47:32 +00:00
|
|
|
|
)};
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
# subtract the new top surfaces from the other non-top surfaces and re-add them
|
2014-03-25 00:11:28 +00:00
|
|
|
|
my @other = grep $_->surface_type != S_TYPE_TOP && !$_->is_bottom, @surfaces;
|
2013-11-23 17:15:59 +00:00
|
|
|
|
foreach my $group (@{Slic3r::Surface::Collection->new(@other)->group}) {
|
2013-07-26 10:31:25 +00:00
|
|
|
|
push @new_surfaces, map $group->[0]->clone(expolygon => $_), @{diff_ex(
|
|
|
|
|
[ map $_->p, @$group ],
|
|
|
|
|
[ map $_->p, @new_surfaces ],
|
|
|
|
|
)};
|
|
|
|
|
}
|
2013-09-06 16:36:38 +00:00
|
|
|
|
$self->fill_surfaces->clear;
|
|
|
|
|
$self->fill_surfaces->append(@new_surfaces);
|
2013-04-18 16:43:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
|
1;
|