2012-09-23 00:52:31 +00:00
|
|
|
|
package Slic3r::Layer::Region;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
use Moo;
|
|
|
|
|
|
2013-03-29 22:49:58 +00:00
|
|
|
|
use List::Util qw(sum first);
|
2012-09-22 17:04:36 +00:00
|
|
|
|
use Slic3r::ExtrusionPath ':roles';
|
2013-10-13 10:12:03 +00:00
|
|
|
|
use Slic3r::Geometry qw(PI A B scale unscale chained_path_items points_coincide);
|
2013-08-26 15:58:37 +00:00
|
|
|
|
use Slic3r::Geometry::Clipper qw(union_ex diff_ex intersection_ex
|
2013-08-26 23:26:44 +00:00
|
|
|
|
offset offset2 offset2_ex union_pt traverse_pt diff intersection
|
2013-08-08 14:27:41 +00:00
|
|
|
|
union diff);
|
2012-09-22 17:04:36 +00:00
|
|
|
|
use Slic3r::Surface ':types';
|
|
|
|
|
|
|
|
|
|
has 'layer' => (
|
|
|
|
|
is => 'ro',
|
|
|
|
|
weak_ref => 1,
|
|
|
|
|
required => 1,
|
2012-10-28 09:28:40 +00:00
|
|
|
|
trigger => 1,
|
2013-11-11 19:37:06 +00:00
|
|
|
|
handles => [qw(id slice_z print_z height flow config)],
|
2012-09-22 17:04:36 +00:00
|
|
|
|
);
|
2013-02-27 09:43:50 +00:00
|
|
|
|
has 'region' => (is => 'ro', required => 1, handles => [qw(extruders)]);
|
2012-10-28 09:28:40 +00:00
|
|
|
|
has 'perimeter_flow' => (is => 'rw');
|
|
|
|
|
has 'infill_flow' => (is => 'rw');
|
2013-03-16 23:02:31 +00:00
|
|
|
|
has 'solid_infill_flow' => (is => 'rw');
|
2013-03-07 15:00:58 +00:00
|
|
|
|
has 'top_infill_flow' => (is => 'rw');
|
2013-02-18 10:52:47 +00:00
|
|
|
|
has 'infill_area_threshold' => (is => 'lazy');
|
2013-02-09 22:36:32 +00:00
|
|
|
|
has 'overhang_width' => (is => 'lazy');
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
|
|
# collection of surfaces generated by slicing the original geometry
|
2013-06-20 17:43:53 +00:00
|
|
|
|
# divided by type top/bottom/internal
|
2013-07-14 13:03:45 +00:00
|
|
|
|
has 'slices' => (is => 'rw', default => sub { Slic3r::Surface::Collection->new });
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-07-16 15:13:01 +00:00
|
|
|
|
# collection of extrusion paths/loops filling gaps
|
2013-07-18 20:29:12 +00:00
|
|
|
|
has 'thin_fills' => (is => 'rw', default => sub { Slic3r::ExtrusionPath::Collection->new });
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2012-12-22 22:57:39 +00:00
|
|
|
|
# collection of surfaces for infill generation
|
2013-07-14 12:56:43 +00:00
|
|
|
|
has 'fill_surfaces' => (is => 'rw', default => sub { Slic3r::Surface::Collection->new });
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
|
|
# ordered collection of extrusion paths/loops to build all perimeters
|
2013-07-18 20:29:12 +00:00
|
|
|
|
has 'perimeters' => (is => 'rw', default => sub { Slic3r::ExtrusionPath::Collection->new });
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
|
|
# ordered collection of extrusion paths to fill surfaces
|
2013-07-18 20:29:12 +00:00
|
|
|
|
has 'fills' => (is => 'rw', default => sub { Slic3r::ExtrusionPath::Collection->new });
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2012-10-28 11:22:30 +00:00
|
|
|
|
sub BUILD {
|
|
|
|
|
my $self = shift;
|
|
|
|
|
$self->_update_flows;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-28 09:28:40 +00:00
|
|
|
|
sub _trigger_layer {
|
2012-09-23 00:40:25 +00:00
|
|
|
|
my $self = shift;
|
2012-10-28 11:22:30 +00:00
|
|
|
|
$self->_update_flows;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub _update_flows {
|
|
|
|
|
my $self = shift;
|
|
|
|
|
return if !$self->region;
|
2012-10-28 09:28:40 +00:00
|
|
|
|
|
2013-02-22 15:56:43 +00:00
|
|
|
|
if ($self->id == 0) {
|
2013-03-16 23:02:31 +00:00
|
|
|
|
for (qw(perimeter infill solid_infill top_infill)) {
|
|
|
|
|
my $method = "${_}_flow";
|
|
|
|
|
$self->$method
|
|
|
|
|
($self->region->first_layer_flows->{$_} || $self->region->flows->{$_});
|
|
|
|
|
}
|
2013-02-22 15:56:43 +00:00
|
|
|
|
} else {
|
|
|
|
|
$self->perimeter_flow($self->region->flows->{perimeter});
|
|
|
|
|
$self->infill_flow($self->region->flows->{infill});
|
2013-03-16 23:02:31 +00:00
|
|
|
|
$self->solid_infill_flow($self->region->flows->{solid_infill});
|
2013-03-07 15:00:58 +00:00
|
|
|
|
$self->top_infill_flow($self->region->flows->{top_infill});
|
2013-02-22 15:56:43 +00:00
|
|
|
|
}
|
2012-09-23 00:40:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-09 22:36:32 +00:00
|
|
|
|
sub _build_overhang_width {
|
|
|
|
|
my $self = shift;
|
|
|
|
|
my $threshold_rad = PI/2 - atan2($self->perimeter_flow->width / $self->height / 2, 1);
|
|
|
|
|
return scale($self->height * ((cos $threshold_rad) / (sin $threshold_rad)));
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-18 10:52:47 +00:00
|
|
|
|
sub _build_infill_area_threshold {
|
|
|
|
|
my $self = shift;
|
2013-03-16 23:02:31 +00:00
|
|
|
|
return $self->solid_infill_flow->scaled_spacing ** 2;
|
2013-02-18 10:52:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
|
# build polylines from lines
|
|
|
|
|
sub make_surfaces {
|
|
|
|
|
my $self = shift;
|
|
|
|
|
my ($loops) = @_;
|
|
|
|
|
|
2012-12-30 15:27:20 +00:00
|
|
|
|
return if !@$loops;
|
2013-07-14 13:03:45 +00:00
|
|
|
|
$self->slices->clear;
|
2013-10-13 10:12:03 +00:00
|
|
|
|
$self->slices->append($self->_merge_loops($loops));
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-08-19 14:53:54 +00:00
|
|
|
|
if (0) {
|
|
|
|
|
require "Slic3r/SVG.pm";
|
|
|
|
|
Slic3r::SVG::output("surfaces.svg",
|
|
|
|
|
#polylines => $loops,
|
|
|
|
|
red_polylines => [ grep $_->is_counter_clockwise, @$loops ],
|
|
|
|
|
green_polylines => [ grep !$_->is_counter_clockwise, @$loops ],
|
|
|
|
|
expolygons => [ map $_->expolygon, @{$self->slices} ],
|
|
|
|
|
);
|
|
|
|
|
}
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-12-30 15:27:20 +00:00
|
|
|
|
sub _merge_loops {
|
2013-10-13 10:12:03 +00:00
|
|
|
|
my ($self, $loops, $safety_offset) = @_;
|
2012-12-30 15:27:20 +00:00
|
|
|
|
|
2012-12-30 16:57:30 +00:00
|
|
|
|
# Input loops are not suitable for evenodd nor nonzero fill types, as we might get
|
|
|
|
|
# two consecutive concentric loops having the same winding order - and we have to
|
|
|
|
|
# respect such order. In that case, evenodd would create wrong inversions, and nonzero
|
|
|
|
|
# would ignore holes inside two concentric contours.
|
|
|
|
|
# So we're ordering loops and collapse consecutive concentric loops having the same
|
|
|
|
|
# winding order.
|
2013-08-19 14:53:54 +00:00
|
|
|
|
# TODO: find a faster algorithm for this, maybe with some sort of binary search.
|
|
|
|
|
# If we computed a "nesting tree" we could also just remove the consecutive loops
|
|
|
|
|
# having the same winding order, and remove the extra one(s) so that we could just
|
|
|
|
|
# supply everything to offset_ex() instead of performing several union/diff calls.
|
|
|
|
|
|
|
|
|
|
# we sort by area assuming that the outermost loops have larger area;
|
|
|
|
|
# the previous sorting method, based on $b->encloses_point($a->[0]), failed to nest
|
|
|
|
|
# loops correctly in some edge cases when original model had overlapping facets
|
|
|
|
|
my @abs_area = map abs($_), my @area = map $_->area, @$loops;
|
|
|
|
|
my @sorted = sort { $abs_area[$b] <=> $abs_area[$a] } 0..$#$loops; # outer first
|
|
|
|
|
|
2013-08-08 14:27:41 +00:00
|
|
|
|
# we don't perform a safety offset now because it might reverse cw loops
|
|
|
|
|
my $slices = [];
|
2013-08-19 14:53:54 +00:00
|
|
|
|
for my $i (@sorted) {
|
|
|
|
|
# we rely on the already computed area to determine the winding order
|
|
|
|
|
# of the loops, since the Orientation() function provided by Clipper
|
|
|
|
|
# would do the same, thus repeating the calculation
|
|
|
|
|
$slices = ($area[$i] >= 0)
|
2013-09-06 22:28:53 +00:00
|
|
|
|
? [ $loops->[$i], @$slices ]
|
2013-08-19 14:53:54 +00:00
|
|
|
|
: diff($slices, [$loops->[$i]]);
|
2012-12-30 16:57:30 +00:00
|
|
|
|
}
|
2013-08-08 14:27:41 +00:00
|
|
|
|
|
|
|
|
|
# perform a safety offset to merge very close facets (TODO: find test case for this)
|
|
|
|
|
$safety_offset //= scale 0.0499;
|
2013-08-16 07:09:56 +00:00
|
|
|
|
$slices = offset2_ex($slices, +$safety_offset, -$safety_offset);
|
2012-12-30 15:27:20 +00:00
|
|
|
|
|
2013-10-13 10:12:03 +00:00
|
|
|
|
Slic3r::debugf "Layer %d (slice_z = %.2f, print_z = %.2f): %d surface(s) having %d holes detected from %d polylines\n",
|
|
|
|
|
$self->id, unscale($self->slice_z), $self->print_z,
|
|
|
|
|
scalar(@$slices), scalar(map @{$_->holes}, @$slices), scalar(@$loops)
|
|
|
|
|
if $Slic3r::debug;
|
2012-12-30 15:27:20 +00:00
|
|
|
|
|
2013-08-08 14:27:41 +00:00
|
|
|
|
return map Slic3r::Surface->new(expolygon => $_, surface_type => S_TYPE_INTERNAL), @$slices;
|
2012-12-30 15:27:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
|
sub make_perimeters {
|
|
|
|
|
my $self = shift;
|
|
|
|
|
|
2013-02-22 17:23:23 +00:00
|
|
|
|
my $perimeter_spacing = $self->perimeter_flow->scaled_spacing;
|
2013-03-16 23:02:31 +00:00
|
|
|
|
my $infill_spacing = $self->solid_infill_flow->scaled_spacing;
|
2013-05-11 19:05:29 +00:00
|
|
|
|
my $gap_area_threshold = $self->perimeter_flow->scaled_width ** 2;
|
2012-09-22 17:04:36 +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-09-16 15:44:30 +00:00
|
|
|
|
my @gaps = (); # array of Polygons
|
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
|
|
|
|
# generate loops
|
|
|
|
|
# (one more than necessary so that we can detect gaps even after the desired
|
|
|
|
|
# number of perimeters has been generated)
|
|
|
|
|
my @last = @{$surface->expolygon};
|
2013-08-09 14:18:21 +00:00
|
|
|
|
my @this_gaps = ();
|
2013-05-11 19:05:29 +00:00
|
|
|
|
for my $i (0 .. $loop_number) {
|
|
|
|
|
# external loop only needs half inset distance
|
|
|
|
|
my $spacing = ($i == 0)
|
|
|
|
|
? $perimeter_spacing / 2
|
|
|
|
|
: $perimeter_spacing;
|
2013-02-23 17:21:29 +00:00
|
|
|
|
|
2013-07-16 18:09:53 +00:00
|
|
|
|
my @offsets = @{offset2_ex(\@last, -1.5*$spacing, +0.5*$spacing)};
|
2013-09-03 17:26:58 +00:00
|
|
|
|
# clone polygons because these ExPolygons will go out of scope very soon
|
|
|
|
|
my @contours_offsets = map $_->contour->clone, @offsets;
|
|
|
|
|
my @holes_offsets = map $_->clone, map @{$_->holes}, @offsets;
|
|
|
|
|
@offsets = map $_->clone, (@contours_offsets, @holes_offsets); # turn @offsets from ExPolygons to Polygons
|
2013-05-11 07:35:33 +00:00
|
|
|
|
|
2013-05-11 19:05:29 +00:00
|
|
|
|
# where offset2() collapses the expolygon, then there's no room for an inner loop
|
2013-05-11 07:35:33 +00:00
|
|
|
|
# and we can extract the gap for later processing
|
2013-11-11 19:37:06 +00:00
|
|
|
|
if ($Slic3r::Config->gap_fill_speed > 0 && $self->config->fill_density > 0) {
|
2013-09-16 15:44:30 +00:00
|
|
|
|
my $diff = diff(
|
2013-07-16 22:48:29 +00:00
|
|
|
|
offset(\@last, -0.5*$spacing),
|
2013-01-11 18:15:42 +00:00
|
|
|
|
# +2 on the offset here makes sure that Clipper float truncation
|
|
|
|
|
# won't shrink the clip polygon to be smaller than intended.
|
2013-07-16 22:48:29 +00:00
|
|
|
|
offset(\@offsets, +0.5*$spacing + 2),
|
2012-09-22 17:04:36 +00:00
|
|
|
|
);
|
2013-09-16 15:44:30 +00:00
|
|
|
|
push @gaps, (@this_gaps = grep abs($_->area) >= $gap_area_threshold, @$diff);
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-11 19:05:29 +00:00
|
|
|
|
last if !@offsets || $i == $loop_number;
|
|
|
|
|
push @contours, @contours_offsets;
|
|
|
|
|
push @holes, @holes_offsets;
|
|
|
|
|
@last = @offsets;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-09 14:18:21 +00:00
|
|
|
|
# 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)
|
2013-09-16 15:44:30 +00:00
|
|
|
|
@last = @{diff(\@last, \@this_gaps)};
|
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
|
2013-07-14 12:56:43 +00:00
|
|
|
|
$self->fill_surfaces->append(
|
2013-08-08 00:10:34 +00:00
|
|
|
|
@{offset2_ex(
|
2013-07-20 10:22:41 +00:00
|
|
|
|
[ map $_->simplify_as_polygons(&Slic3r::SCALED_RESOLUTION), @{union_ex(\@last)} ],
|
2013-08-09 14:18:21 +00:00
|
|
|
|
-($perimeter_spacing/2 + $infill_spacing/2),
|
|
|
|
|
+$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
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
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) = @_;
|
|
|
|
|
|
|
|
|
|
# use a nearest neighbor search to order these children
|
|
|
|
|
# TODO: supply second argument to chained_path_items() too?
|
|
|
|
|
my @nodes = @{Slic3r::Geometry::chained_path_items(
|
2013-09-02 20:33:03 +00:00
|
|
|
|
[ map [ ($_->{outer} // $_->{hole})->first_point, $_ ], @$polynodes ],
|
2013-05-11 19:30:26 +00:00
|
|
|
|
)};
|
|
|
|
|
|
|
|
|
|
my @loops = ();
|
2013-06-03 19:27:09 +00:00
|
|
|
|
foreach my $polynode (@nodes) {
|
2013-05-11 19:30:26 +00:00
|
|
|
|
push @loops, $traverse->($polynode->{children}, $depth+1, $is_contour);
|
2013-05-14 18:19:42 +00:00
|
|
|
|
|
2013-06-22 22:05:08 +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
|
2013-09-02 18:22:20 +00:00
|
|
|
|
|
|
|
|
|
my $polygon = ($polynode->{outer} // $polynode->{hole})->clone;
|
|
|
|
|
$polygon->reverse if defined $polynode->{hole};
|
2013-06-22 22:05:08 +00:00
|
|
|
|
$polygon->reverse if !$is_contour;
|
2013-05-14 18:19:42 +00:00
|
|
|
|
|
2013-05-11 19:30:26 +00:00
|
|
|
|
my $role = EXTR_ROLE_PERIMETER;
|
2013-05-13 10:52:57 +00:00
|
|
|
|
if ($is_contour ? $depth == 0 : !@{ $polynode->{children} }) {
|
|
|
|
|
# external perimeters are root level in case of contours
|
|
|
|
|
# and items with no children in case of holes
|
2013-05-11 19:30:26 +00:00
|
|
|
|
$role = EXTR_ROLE_EXTERNAL_PERIMETER;
|
|
|
|
|
} elsif ($depth == 1 && $is_contour) {
|
|
|
|
|
$role = EXTR_ROLE_CONTOUR_INTERNAL_PERIMETER;
|
|
|
|
|
}
|
2013-05-14 18:19:42 +00:00
|
|
|
|
|
2013-07-16 07:49:34 +00:00
|
|
|
|
push @loops, Slic3r::ExtrusionLoop->new(
|
2013-05-14 18:19:42 +00:00
|
|
|
|
polygon => $polygon,
|
2013-05-11 19:30:26 +00:00
|
|
|
|
role => $role,
|
|
|
|
|
flow_spacing => $self->perimeter_flow->spacing,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
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-05-11 19:05:29 +00:00
|
|
|
|
my @loops = (
|
2013-05-11 19:30:26 +00:00
|
|
|
|
(reverse $traverse->($holes_pt, 0)),
|
|
|
|
|
$traverse->($contours_pt, 0, 1),
|
2013-05-11 19:05:29 +00:00
|
|
|
|
);
|
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
|
|
|
|
|
if $Slic3r::Config->external_perimeters_first
|
2013-05-13 11:18:58 +00:00
|
|
|
|
|| ($self->layer->id == 0 && $Slic3r::Config->brim_width > 0);
|
|
|
|
|
|
|
|
|
|
# append perimeters
|
2013-07-18 20:29:12 +00:00
|
|
|
|
$self->perimeters->append(@loops);
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-09-16 15:44:30 +00:00
|
|
|
|
# detect thin walls by offsetting slices by half extrusion inwards
|
|
|
|
|
# and add them as perimeters
|
|
|
|
|
if ($self->config->thin_walls) {
|
|
|
|
|
# we use spacing here because there could be a case where
|
|
|
|
|
# the slice collapses with width but doesn't collapse with spacing,
|
|
|
|
|
# thus causing both perimeters and medial axis to be generated
|
|
|
|
|
my $width = $self->perimeter_flow->scaled_spacing;
|
|
|
|
|
my $diff = diff_ex(
|
|
|
|
|
[ map $_->p, @{$self->slices} ],
|
|
|
|
|
offset2([ map $_->p, @{$self->slices} ], -$width*0.5, +$width*0.5),
|
|
|
|
|
1,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
my $area_threshold = $width ** 2;
|
|
|
|
|
if (@$diff = grep { $_->area > $area_threshold } @$diff) {
|
|
|
|
|
my @p = map $_->medial_axis($width), @$diff;
|
|
|
|
|
my @paths = ();
|
|
|
|
|
for my $p (@p) {
|
|
|
|
|
my %params = (
|
|
|
|
|
role => EXTR_ROLE_EXTERNAL_PERIMETER,
|
|
|
|
|
flow_spacing => $self->perimeter_flow->spacing,
|
|
|
|
|
);
|
|
|
|
|
push @paths, $p->isa('Slic3r::Polygon')
|
|
|
|
|
? Slic3r::ExtrusionLoop->new(polygon => $p, %params)
|
|
|
|
|
: Slic3r::ExtrusionPath->new(polyline => $p, %params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$self->perimeters->append(
|
|
|
|
|
map $_->clone, @{Slic3r::ExtrusionPath::Collection->new(@paths)->chained_path(0)}
|
|
|
|
|
);
|
|
|
|
|
Slic3r::debugf " %d thin walls detected\n", scalar(@paths) if $Slic3r::debug;
|
|
|
|
|
|
|
|
|
|
# in the mean time we subtract thin walls from the detected gaps so that we don't
|
|
|
|
|
# reprocess them, causing overlapping thin walls and zigzag.
|
|
|
|
|
@gaps = @{diff(
|
|
|
|
|
\@gaps,
|
|
|
|
|
[ map $_->grow($self->perimeter_flow->scaled_width), @p ],
|
|
|
|
|
1,
|
|
|
|
|
)};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$self->_fill_gaps(\@gaps);
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 11:07:22 +00:00
|
|
|
|
sub _fill_gaps {
|
|
|
|
|
my $self = shift;
|
|
|
|
|
my ($gaps) = @_;
|
|
|
|
|
|
2013-07-05 12:17:54 +00:00
|
|
|
|
return unless @$gaps;
|
2013-05-13 11:07:22 +00:00
|
|
|
|
|
2013-09-16 15:44:30 +00:00
|
|
|
|
# turn gaps into ExPolygons
|
|
|
|
|
$gaps = union_ex($gaps);
|
|
|
|
|
|
2013-05-19 09:35:41 +00:00
|
|
|
|
my $filler = $self->layer->object->fill_maker->filler('rectilinear');
|
2013-05-13 11:07:22 +00:00
|
|
|
|
$filler->layer_id($self->layer->id);
|
|
|
|
|
|
|
|
|
|
# we should probably use this code to handle thin walls and remove that logic from
|
|
|
|
|
# make_surfaces(), but we need to enable dynamic extrusion width before as we can't
|
|
|
|
|
# use zigzag for thin walls.
|
|
|
|
|
|
2013-06-15 19:10:04 +00:00
|
|
|
|
# medial axis-based gap fill should benefit from detection of larger gaps too, so
|
|
|
|
|
# we could try with 1.5*$w for example, but that doesn't work well for zigzag fill
|
|
|
|
|
# because it tends to create very sparse points along the gap when the infill direction
|
|
|
|
|
# is not parallel to the gap (1.5*$w thus may only work well with a straight line)
|
2013-05-13 11:07:22 +00:00
|
|
|
|
my $w = $self->perimeter_flow->width;
|
2013-06-15 19:10:04 +00:00
|
|
|
|
my @widths = ($w, 0.4 * $w); # worth trying 0.2 too?
|
2013-05-13 11:07:22 +00:00
|
|
|
|
foreach my $width (@widths) {
|
|
|
|
|
my $flow = $self->perimeter_flow->clone(width => $width);
|
|
|
|
|
|
|
|
|
|
# extract the gaps having this width
|
2013-07-16 18:09:53 +00:00
|
|
|
|
my @this_width = map @{$_->offset_ex(+0.5*$flow->scaled_width)},
|
|
|
|
|
map @{$_->noncollapsing_offset_ex(-0.5*$flow->scaled_width)},
|
2013-05-13 11:07:22 +00:00
|
|
|
|
@$gaps;
|
|
|
|
|
|
|
|
|
|
if (0) { # remember to re-enable t/dynamic.t
|
|
|
|
|
# fill gaps using dynamic extrusion width, by treating them like thin polygons,
|
|
|
|
|
# thus generating the skeleton and using it to fill them
|
|
|
|
|
my %path_args = (
|
|
|
|
|
role => EXTR_ROLE_SOLIDFILL,
|
|
|
|
|
flow_spacing => $flow->spacing,
|
|
|
|
|
);
|
2013-07-18 20:29:12 +00:00
|
|
|
|
$self->thin_fills->append(map {
|
2013-05-13 11:07:22 +00:00
|
|
|
|
$_->isa('Slic3r::Polygon')
|
2013-07-16 07:49:34 +00:00
|
|
|
|
? Slic3r::ExtrusionLoop->new(polygon => $_, %path_args)->split_at_first_point # we should keep these as loops
|
|
|
|
|
: Slic3r::ExtrusionPath->new(polyline => $_, %path_args),
|
2013-07-18 20:29:12 +00:00
|
|
|
|
} map $_->medial_axis($flow->scaled_width), @this_width);
|
2013-05-13 11:07:22 +00:00
|
|
|
|
|
|
|
|
|
Slic3r::debugf " %d gaps filled with extrusion width = %s\n", scalar @this_width, $width
|
|
|
|
|
if @{ $self->thin_fills };
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
# fill gaps using zigzag infill
|
|
|
|
|
|
|
|
|
|
# since this is infill, we have to offset by half-extrusion width inwards
|
2013-07-16 18:09:53 +00:00
|
|
|
|
my @infill = map @{$_->offset_ex(-0.5*$flow->scaled_width)}, @this_width;
|
2013-05-13 11:07:22 +00:00
|
|
|
|
|
|
|
|
|
foreach my $expolygon (@infill) {
|
2013-07-25 22:03:28 +00:00
|
|
|
|
my ($params, @paths) = $filler->fill_surface(
|
2013-07-15 10:14:22 +00:00
|
|
|
|
Slic3r::Surface->new(expolygon => $expolygon, surface_type => S_TYPE_INTERNALSOLID),
|
2013-05-13 11:07:22 +00:00
|
|
|
|
density => 1,
|
|
|
|
|
flow_spacing => $flow->spacing,
|
|
|
|
|
);
|
|
|
|
|
|
2013-09-16 15:44:30 +00:00
|
|
|
|
# Split polylines into lines so that the chained_path() search
|
|
|
|
|
# at the final stage has more freedom and will choose starting
|
|
|
|
|
# points closer than last positions. OTOH, this will make such
|
|
|
|
|
# search slower. Probably, ExtrusionPath objects should support
|
|
|
|
|
# splitting nearby a given position so that we can choose the right
|
|
|
|
|
# entry point even in the middle of the path without needing a
|
|
|
|
|
# complex, slow, chained_path() search on all segments. TODO.
|
|
|
|
|
# Such logic will also avoid all the small travel moves that this
|
|
|
|
|
# line-splitting causes, and it will be applicable to other things
|
|
|
|
|
# too.
|
|
|
|
|
my @lines = map @{Slic3r::Polyline->new(@$_)->lines}, @paths;
|
|
|
|
|
|
|
|
|
|
@paths = map Slic3r::ExtrusionPath->new(
|
|
|
|
|
polyline => Slic3r::Polyline->new(@$_),
|
|
|
|
|
role => EXTR_ROLE_GAPFILL,
|
|
|
|
|
height => $self->height,
|
|
|
|
|
flow_spacing => $params->{flow_spacing},
|
|
|
|
|
), @lines;
|
|
|
|
|
$_->simplify($flow->scaled_width/3) for @paths;
|
|
|
|
|
|
|
|
|
|
$self->thin_fills->append(@paths);
|
2013-05-13 11:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# check what's left
|
|
|
|
|
@$gaps = @{diff_ex(
|
|
|
|
|
[ map @$_, @$gaps ],
|
|
|
|
|
[ map @$_, @this_width ],
|
|
|
|
|
)};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
|
sub prepare_fill_surfaces {
|
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
|
|
# 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) {
|
2013-09-06 16:36:38 +00:00
|
|
|
|
$_->surface_type(S_TYPE_INTERNAL) for @{$self->fill_surfaces->filter_by_type(S_TYPE_BOTTOM)};
|
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 = ();
|
2013-09-06 16:36:38 +00:00
|
|
|
|
foreach my $surface (grep $_->surface_type == S_TYPE_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
|
2013-11-11 19:37:06 +00:00
|
|
|
|
my $angle = $lower_layer
|
|
|
|
|
? $self->_detect_bridge_direction($surface->expolygon, $lower_layer)
|
2013-07-26 10:31:25 +00:00
|
|
|
|
: undef;
|
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 = ();
|
|
|
|
|
foreach my $group (Slic3r::Surface->group(@top, @bottom)) {
|
|
|
|
|
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
|
2013-09-06 16:36:38 +00:00
|
|
|
|
my @other = grep $_->surface_type != S_TYPE_TOP && $_->surface_type != S_TYPE_BOTTOM, @surfaces;
|
2013-07-26 10:31:25 +00:00
|
|
|
|
foreach my $group (Slic3r::Surface->group(@other)) {
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
sub _detect_bridge_direction {
|
2013-11-11 19:37:06 +00:00
|
|
|
|
my ($self, $expolygon, $lower_layer) = @_;
|
2013-07-26 10:31:25 +00:00
|
|
|
|
|
2013-08-08 00:10:34 +00:00
|
|
|
|
my $grown = $expolygon->offset_ex(+$self->perimeter_flow->scaled_width);
|
2013-11-11 19:37:06 +00:00
|
|
|
|
my @lower = @{$lower_layer->slices}; # expolygons
|
2013-04-18 16:43:46 +00:00
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
# detect what edges lie on lower slices
|
|
|
|
|
my @edges = (); # polylines
|
|
|
|
|
foreach my $lower (@lower) {
|
|
|
|
|
# turn bridge contour and holes into polylines and then clip them
|
|
|
|
|
# with each lower slice's contour
|
2013-08-08 00:10:34 +00:00
|
|
|
|
my @clipped = map $_->split_at_first_point->clip_with_polygon($lower->contour), map @$_, @$grown;
|
2013-07-26 10:31:25 +00:00
|
|
|
|
if (@clipped == 2) {
|
|
|
|
|
# If the split_at_first_point() call above happens to split the polygon inside the clipping area
|
|
|
|
|
# we would get two consecutive polylines instead of a single one, so we use this ugly hack to
|
|
|
|
|
# recombine them back into a single one in order to trigger the @edges == 2 logic below.
|
|
|
|
|
# This needs to be replaced with something way better.
|
|
|
|
|
if (points_coincide($clipped[0][0], $clipped[-1][-1])) {
|
|
|
|
|
@clipped = (Slic3r::Polyline->new(@{$clipped[-1]}, @{$clipped[0]}));
|
|
|
|
|
}
|
|
|
|
|
if (points_coincide($clipped[-1][0], $clipped[0][-1])) {
|
|
|
|
|
@clipped = (Slic3r::Polyline->new(@{$clipped[0]}, @{$clipped[1]}));
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
2013-04-18 16:43:46 +00:00
|
|
|
|
}
|
2013-07-26 10:31:25 +00:00
|
|
|
|
push @edges, @clipped;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Slic3r::debugf "Found bridge on layer %d with %d support(s)\n", $self->id, scalar(@edges);
|
|
|
|
|
return undef if !@edges;
|
|
|
|
|
|
|
|
|
|
my $bridge_angle = undef;
|
|
|
|
|
|
|
|
|
|
if (0) {
|
|
|
|
|
require "Slic3r/SVG.pm";
|
|
|
|
|
Slic3r::SVG::output("bridge_$expolygon.svg",
|
|
|
|
|
expolygons => [ $expolygon ],
|
|
|
|
|
red_expolygons => [ @lower ],
|
|
|
|
|
polylines => [ @edges ],
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (@edges == 2) {
|
|
|
|
|
my @chords = map Slic3r::Line->new($_->[0], $_->[-1]), @edges;
|
|
|
|
|
my @midpoints = map $_->midpoint, @chords;
|
|
|
|
|
my $line_between_midpoints = Slic3r::Line->new(@midpoints);
|
|
|
|
|
$bridge_angle = Slic3r::Geometry::rad2deg_dir($line_between_midpoints->direction);
|
|
|
|
|
} elsif (@edges == 1) {
|
|
|
|
|
# TODO: this case includes both U-shaped bridges and plain overhangs;
|
|
|
|
|
# we need a trapezoidation algorithm to detect the actual bridged area
|
|
|
|
|
# and separate it from the overhang area.
|
|
|
|
|
# in the mean time, we're treating as overhangs all cases where
|
|
|
|
|
# our supporting edge is a straight line
|
|
|
|
|
if (@{$edges[0]} > 2) {
|
|
|
|
|
my $line = Slic3r::Line->new($edges[0]->[0], $edges[0]->[-1]);
|
|
|
|
|
$bridge_angle = Slic3r::Geometry::rad2deg_dir($line->direction);
|
2013-04-18 16:43:46 +00:00
|
|
|
|
}
|
2013-07-26 10:31:25 +00:00
|
|
|
|
} elsif (@edges) {
|
|
|
|
|
# inset the bridge expolygon; we'll use this one to clip our test lines
|
2013-09-03 17:26:58 +00:00
|
|
|
|
my $inset = $expolygon->offset_ex($self->infill_flow->scaled_width);
|
2013-04-18 16:43:46 +00:00
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
# detect anchors as intersection between our bridge expolygon and the lower slices
|
|
|
|
|
my $anchors = intersection_ex(
|
2013-07-29 10:15:30 +00:00
|
|
|
|
[ @$grown ],
|
2013-07-26 10:31:25 +00:00
|
|
|
|
[ map @$_, @lower ],
|
|
|
|
|
1, # safety offset required to avoid Clipper from detecting empty intersection while Boost actually found some @edges
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
# we'll now try several directions using a rudimentary visibility check:
|
|
|
|
|
# bridge in several directions and then sum the length of lines having both
|
|
|
|
|
# endpoints within anchors
|
|
|
|
|
my %directions = (); # angle => score
|
|
|
|
|
my $angle_increment = PI/36; # 5°
|
|
|
|
|
my $line_increment = $self->infill_flow->scaled_width;
|
|
|
|
|
for (my $angle = 0; $angle <= PI; $angle += $angle_increment) {
|
|
|
|
|
# rotate everything - the center point doesn't matter
|
|
|
|
|
$_->rotate($angle, [0,0]) for @$inset, @$anchors;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
# generate lines in this direction
|
|
|
|
|
my $bounding_box = Slic3r::Geometry::BoundingBox->new_from_points([ map @$_, map @$_, @$anchors ]);
|
2013-04-18 16:43:46 +00:00
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
my @lines = ();
|
|
|
|
|
for (my $x = $bounding_box->x_min; $x <= $bounding_box->x_max; $x += $line_increment) {
|
|
|
|
|
push @lines, [ [$x, $bounding_box->y_min], [$x, $bounding_box->y_max] ];
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
# TODO: use a multi_polygon_multi_linestring_intersection() call
|
2013-09-03 17:26:58 +00:00
|
|
|
|
my @clipped_lines = map Slic3r::Line->new(@$_),
|
|
|
|
|
map @{ Boost::Geometry::Utils::polygon_multi_linestring_intersection($_->pp, \@lines) }, @$inset;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
# remove any line not having both endpoints within anchors
|
|
|
|
|
@clipped_lines = grep {
|
|
|
|
|
my $line = $_;
|
2013-08-28 23:36:42 +00:00
|
|
|
|
!(first { $_->encloses_point_quick($line->a) } @$anchors)
|
|
|
|
|
&& !(first { $_->encloses_point_quick($line->b) } @$anchors);
|
2013-07-26 10:31:25 +00:00
|
|
|
|
} @clipped_lines;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
# sum length of bridged lines
|
2013-11-06 20:09:28 +00:00
|
|
|
|
$directions{-$angle} = sum(map $_->length, @clipped_lines) // 0;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
2013-04-18 16:43:46 +00:00
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
# this could be slightly optimized with a max search instead of the sort
|
|
|
|
|
my @sorted_directions = sort { $directions{$a} <=> $directions{$b} } keys %directions;
|
2013-04-18 16:43:46 +00:00
|
|
|
|
|
2013-07-26 10:31:25 +00:00
|
|
|
|
# the best direction is the one causing most lines to be bridged
|
|
|
|
|
$bridge_angle = Slic3r::Geometry::rad2deg_dir($sorted_directions[-1]);
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
2013-07-26 10:31:25 +00:00
|
|
|
|
|
|
|
|
|
Slic3r::debugf " Optimal infill angle of bridge on layer %d is %d degrees\n",
|
|
|
|
|
$self->id, $bridge_angle if defined $bridge_angle;
|
|
|
|
|
|
|
|
|
|
return $bridge_angle;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
1;
|