2012-09-23 00:52:31 +00:00
|
|
|
package Slic3r::Layer::Region;
|
2012-09-22 17:04:36 +00:00
|
|
|
use Moo;
|
|
|
|
|
|
|
|
use Slic3r::ExtrusionPath ':roles';
|
2013-02-09 22:36:32 +00:00
|
|
|
use Slic3r::Geometry qw(PI scale chained_path_items);
|
2012-09-22 17:04:36 +00:00
|
|
|
use Slic3r::Geometry::Clipper qw(safety_offset union_ex diff_ex intersection_ex);
|
|
|
|
use Slic3r::Surface ':types';
|
|
|
|
|
|
|
|
has 'layer' => (
|
|
|
|
is => 'ro',
|
|
|
|
weak_ref => 1,
|
|
|
|
required => 1,
|
2012-10-28 09:28:40 +00:00
|
|
|
trigger => 1,
|
2012-09-23 00:40:25 +00:00
|
|
|
handles => [qw(id slice_z print_z height flow)],
|
2012-09-22 17:04:36 +00:00
|
|
|
);
|
2012-09-23 00:52:31 +00:00
|
|
|
has 'region' => (is => 'ro', required => 1);
|
2012-10-28 09:28:40 +00:00
|
|
|
has 'perimeter_flow' => (is => 'rw');
|
|
|
|
has '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 spare segments generated by slicing the original geometry;
|
|
|
|
# these need to be merged in continuos (closed) polylines
|
|
|
|
has 'lines' => (is => 'rw', default => sub { [] });
|
|
|
|
|
|
|
|
# collection of surfaces generated by slicing the original geometry
|
2012-09-22 17:38:25 +00:00
|
|
|
has 'slices' => (is => 'rw', default => sub { [] });
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
# collection of polygons or polylines representing thin walls contained
|
|
|
|
# in the original geometry
|
2012-09-22 17:38:25 +00:00
|
|
|
has 'thin_walls' => (is => 'rw', default => sub { [] });
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
# collection of polygons or polylines representing thin infill regions that
|
|
|
|
# need to be filled with a medial axis
|
2012-09-22 17:38:25 +00:00
|
|
|
has 'thin_fills' => (is => 'rw', default => sub { [] });
|
2012-09-22 17:04:36 +00:00
|
|
|
|
2012-12-22 22:57:39 +00:00
|
|
|
# collection of surfaces for infill generation
|
2012-09-22 17:38:25 +00:00
|
|
|
has 'fill_surfaces' => (is => 'rw', default => sub { [] });
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
# ordered collection of extrusion paths/loops to build all perimeters
|
2012-09-22 17:38:25 +00:00
|
|
|
has 'perimeters' => (is => 'rw', default => sub { [] });
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
# ordered collection of extrusion paths to fill surfaces
|
2012-09-22 17:38:25 +00:00
|
|
|
has 'fills' => (is => 'rw', default => sub { [] });
|
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) {
|
|
|
|
$self->perimeter_flow
|
|
|
|
($self->region->first_layer_flows->{perimeter} || $self->region->flows->{perimeter});
|
|
|
|
$self->infill_flow
|
|
|
|
($self->region->first_layer_flows->{infill} || $self->region->flows->{infill});
|
|
|
|
} else {
|
|
|
|
$self->perimeter_flow($self->region->flows->{perimeter});
|
|
|
|
$self->infill_flow($self->region->flows->{infill});
|
|
|
|
}
|
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;
|
|
|
|
return $self->infill_flow->scaled_spacing ** 2;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
$self->slices([ _merge_loops($loops) ]);
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
# the contours must be offsetted by half extrusion width inwards
|
|
|
|
{
|
2012-09-23 01:03:08 +00:00
|
|
|
my $distance = $self->perimeter_flow->scaled_width / 2;
|
2012-09-22 17:04:36 +00:00
|
|
|
my @surfaces = @{$self->slices};
|
|
|
|
@{$self->slices} = ();
|
|
|
|
foreach my $surface (@surfaces) {
|
|
|
|
push @{$self->slices}, map Slic3r::Surface->new
|
|
|
|
(expolygon => $_, surface_type => S_TYPE_INTERNAL),
|
2012-10-24 14:43:41 +00:00
|
|
|
@{union_ex([
|
|
|
|
Slic3r::Geometry::Clipper::offset(
|
|
|
|
[Slic3r::Geometry::Clipper::offset($surface->expolygon, -2*$distance)],
|
|
|
|
+$distance,
|
|
|
|
),
|
|
|
|
])};
|
2012-09-22 17:04:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# now detect thin walls by re-outgrowing offsetted surfaces and subtracting
|
|
|
|
# them from the original slices
|
2012-11-04 23:17:46 +00:00
|
|
|
my $outgrown = [ Slic3r::Geometry::Clipper::offset([ map $_->p, @{$self->slices} ], $distance) ];
|
2012-09-22 17:04:36 +00:00
|
|
|
my $diff = diff_ex(
|
|
|
|
[ map $_->p, @surfaces ],
|
|
|
|
$outgrown,
|
|
|
|
1,
|
|
|
|
);
|
|
|
|
|
|
|
|
$self->thin_walls([]);
|
|
|
|
if (@$diff) {
|
2012-09-23 01:03:08 +00:00
|
|
|
my $area_threshold = $self->perimeter_flow->scaled_spacing ** 2;
|
2012-09-22 17:04:36 +00:00
|
|
|
@$diff = grep $_->area > ($area_threshold), @$diff;
|
|
|
|
|
2012-09-23 01:03:08 +00:00
|
|
|
@{$self->thin_walls} = map $_->medial_axis($self->perimeter_flow->scaled_width), @$diff;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
Slic3r::debugf " %d thin walls detected\n", scalar(@{$self->thin_walls}) if @{$self->thin_walls};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0) {
|
|
|
|
require "Slic3r/SVG.pm";
|
2012-11-01 10:34:53 +00:00
|
|
|
Slic3r::SVG::output("surfaces.svg",
|
2012-09-22 17:04:36 +00:00
|
|
|
polygons => [ map $_->contour, @{$self->slices} ],
|
|
|
|
red_polygons => [ map $_->p, map @{$_->holes}, @{$self->slices} ],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-30 15:27:20 +00:00
|
|
|
sub _merge_loops {
|
2012-12-30 16:57:30 +00:00
|
|
|
my ($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.
|
|
|
|
# TODO: find a faster algorithm for this.
|
|
|
|
my @loops = sort { $a->encloses_point($b->[0]) ? 0 : 1 } @$loops; # outer first
|
|
|
|
$safety_offset //= scale 0.1;
|
|
|
|
@loops = @{ safety_offset(\@loops, $safety_offset) };
|
|
|
|
my $expolygons = [];
|
|
|
|
while (my $loop = shift @loops) {
|
|
|
|
bless $loop, 'Slic3r::Polygon';
|
|
|
|
if ($loop->is_counter_clockwise) {
|
|
|
|
$expolygons = union_ex([ $loop, map @$_, @$expolygons ]);
|
|
|
|
} else {
|
|
|
|
$expolygons = diff_ex([ map @$_, @$expolygons ], [$loop]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$expolygons = [ map $_->offset_ex(-$safety_offset), @$expolygons ];
|
2012-12-30 15:27:20 +00:00
|
|
|
|
|
|
|
Slic3r::debugf " %d surface(s) having %d holes detected from %d polylines\n",
|
|
|
|
scalar(@$expolygons), scalar(map $_->holes, @$expolygons), scalar(@$loops);
|
|
|
|
|
|
|
|
return map Slic3r::Surface->new(expolygon => $_, surface_type => S_TYPE_INTERNAL), @$expolygons;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
my $infill_spacing = $self->infill_flow->scaled_spacing;
|
2012-09-23 01:03:08 +00:00
|
|
|
my $gap_area_threshold = $self->perimeter_flow->scaled_width ** 2;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
# this array will hold one arrayref per original surface (island);
|
|
|
|
# each item of this arrayref is an arrayref representing a depth (from outer
|
|
|
|
# perimeters to inner); each item of this arrayref is an ExPolygon:
|
|
|
|
# @perimeters = (
|
|
|
|
# [ # first island
|
|
|
|
# [ Slic3r::ExPolygon, Slic3r::ExPolygon... ], #depth 0: outer loop
|
|
|
|
# [ Slic3r::ExPolygon, Slic3r::ExPolygon... ], #depth 1: inner loop
|
|
|
|
# ],
|
|
|
|
# [ # second island
|
|
|
|
# ...
|
|
|
|
# ]
|
|
|
|
# )
|
|
|
|
my @perimeters = (); # one item per depth; each item
|
|
|
|
|
|
|
|
# organize islands using a shortest path search
|
2013-02-06 11:03:53 +00:00
|
|
|
my @surfaces = @{chained_path_items([
|
2012-09-22 17:04:36 +00:00
|
|
|
map [ $_->contour->[0], $_ ], @{$self->slices},
|
|
|
|
])};
|
|
|
|
|
|
|
|
$self->perimeters([]);
|
2012-12-22 22:57:39 +00:00
|
|
|
$self->fill_surfaces([]);
|
2012-09-22 17:04:36 +00:00
|
|
|
$self->thin_fills([]);
|
|
|
|
|
|
|
|
# for each island:
|
|
|
|
foreach my $surface (@surfaces) {
|
|
|
|
my @last_offsets = ($surface->expolygon);
|
|
|
|
|
|
|
|
# experimental hole compensation (see ArcCompensation in the RepRap wiki)
|
|
|
|
if (0) {
|
|
|
|
foreach my $hole ($last_offsets[0]->holes) {
|
|
|
|
my $circumference = abs($hole->length);
|
|
|
|
next unless $circumference <= &Slic3r::SMALL_PERIMETER_LENGTH;
|
|
|
|
# this compensation only works for circular holes, while it would
|
|
|
|
# overcompensate for hexagons and other shapes having straight edges.
|
|
|
|
# so we require a minimum number of vertices.
|
2013-02-18 10:52:47 +00:00
|
|
|
next unless $circumference / @$hole >= 3 * $self->perimeter_flow->scaled_width;
|
2012-09-22 17:04:36 +00:00
|
|
|
|
|
|
|
# revert the compensation done in make_surfaces() and get the actual radius
|
|
|
|
# of the hole
|
2012-09-23 01:03:08 +00:00
|
|
|
my $radius = ($circumference / PI / 2) - $self->perimeter_flow->scaled_spacing/2;
|
|
|
|
my $new_radius = ($self->perimeter_flow->scaled_width + sqrt(($self->perimeter_flow->scaled_width ** 2) + (4*($radius**2)))) / 2;
|
2012-09-22 17:04:36 +00:00
|
|
|
# holes are always turned to contours, so reverse point order before and after
|
|
|
|
$hole->reverse;
|
|
|
|
my @offsetted = $hole->offset(+ ($new_radius - $radius));
|
|
|
|
# skip arc compensation when hole is not round (thus leads to multiple offsets)
|
|
|
|
@$hole = map Slic3r::Point->new($_), @{ $offsetted[0] } if @offsetted == 1;
|
|
|
|
$hole->reverse;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my @gaps = ();
|
|
|
|
|
|
|
|
# generate perimeters inwards (loop 0 is the external one)
|
|
|
|
my $loop_number = $Slic3r::Config->perimeters + ($surface->additional_inner_perimeters || 0);
|
2012-10-28 18:27:54 +00:00
|
|
|
push @perimeters, [[@last_offsets]] if $loop_number > 0;
|
2012-11-01 10:51:52 +00:00
|
|
|
|
|
|
|
# do one more loop (<= instead of <) so that we can detect gaps even after the desired
|
|
|
|
# number of perimeters has been generated
|
|
|
|
for (my $loop = 1; $loop <= $loop_number; $loop++) {
|
2012-09-22 17:04:36 +00:00
|
|
|
# offsetting a polygon can result in one or many offset polygons
|
|
|
|
my @new_offsets = ();
|
|
|
|
foreach my $expolygon (@last_offsets) {
|
2012-10-24 14:43:41 +00:00
|
|
|
my @offsets = @{union_ex([
|
|
|
|
Slic3r::Geometry::Clipper::offset(
|
2013-02-22 17:23:23 +00:00
|
|
|
[Slic3r::Geometry::Clipper::offset($expolygon, -1.5*$perimeter_spacing)],
|
|
|
|
+0.5*$perimeter_spacing,
|
2012-10-24 14:43:41 +00:00
|
|
|
),
|
|
|
|
])};
|
2012-09-22 17:04:36 +00:00
|
|
|
push @new_offsets, @offsets;
|
|
|
|
|
2012-10-04 13:23:08 +00:00
|
|
|
# where the above check collapses the expolygon, then there's no room for an inner loop
|
|
|
|
# and we can extract the gap for later processing
|
2012-09-22 17:04:36 +00:00
|
|
|
my $diff = diff_ex(
|
2013-02-22 17:23:23 +00:00
|
|
|
[ map @$_, $expolygon->offset_ex(-0.5*$perimeter_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-02-22 17:23:23 +00:00
|
|
|
[ Slic3r::Geometry::Clipper::offset([map @$_, @offsets], +0.5*$perimeter_spacing + 2) ],
|
2012-09-22 17:04:36 +00:00
|
|
|
);
|
|
|
|
push @gaps, grep $_->area >= $gap_area_threshold, @$diff;
|
|
|
|
}
|
|
|
|
|
2012-11-01 10:51:52 +00:00
|
|
|
last if !@new_offsets || $loop == $loop_number;
|
|
|
|
@last_offsets = @new_offsets;
|
2012-09-22 17:04:36 +00:00
|
|
|
push @{ $perimeters[-1] }, [@last_offsets];
|
|
|
|
}
|
|
|
|
|
|
|
|
# create one more offset to be used as boundary for fill
|
|
|
|
{
|
2012-12-22 22:57:39 +00:00
|
|
|
my @fill_boundaries = @{union_ex([
|
|
|
|
Slic3r::Geometry::Clipper::offset(
|
2013-02-22 17:23:23 +00:00
|
|
|
[Slic3r::Geometry::Clipper::offset([ map @$_, @last_offsets ], -($perimeter_spacing/2 + $infill_spacing))],
|
|
|
|
+0.5*$infill_spacing,
|
2012-12-22 22:57:39 +00:00
|
|
|
),
|
|
|
|
])};
|
2012-11-18 16:38:08 +00:00
|
|
|
$_->simplify(&Slic3r::SCALED_RESOLUTION) for @fill_boundaries;
|
2012-12-22 22:57:39 +00:00
|
|
|
push @{ $self->fill_surfaces }, @fill_boundaries;
|
2012-10-04 13:23:08 +00:00
|
|
|
}
|
|
|
|
|
2012-10-24 14:17:09 +00:00
|
|
|
# fill gaps
|
2013-01-17 09:39:05 +00:00
|
|
|
if ($Slic3r::Config->gap_fill_speed > 0 && $Slic3r::Config->fill_density > 0) {
|
2012-11-01 10:53:18 +00:00
|
|
|
my $filler = Slic3r::Fill::Rectilinear->new(layer_id => $self->layer->id);
|
2012-09-22 17:04:36 +00:00
|
|
|
|
2012-10-04 13:23:08 +00:00
|
|
|
my $w = $self->perimeter_flow->width;
|
2012-10-24 14:17:09 +00:00
|
|
|
my @widths = (1.5 * $w, $w, 0.5 * $w); # worth trying 0.2 too?
|
2012-10-04 13:23:08 +00:00
|
|
|
foreach my $width (@widths) {
|
2012-10-24 14:17:09 +00:00
|
|
|
my $flow = $self->perimeter_flow->clone(width => $width);
|
2012-10-04 13:23:08 +00:00
|
|
|
|
|
|
|
# extract the gaps having this width
|
2012-10-24 14:17:09 +00:00
|
|
|
my @this_width = map $_->offset_ex(+0.5*$flow->scaled_width),
|
|
|
|
map $_->noncollapsing_offset_ex(-0.5*$flow->scaled_width),
|
|
|
|
@gaps;
|
2012-10-04 13:23:08 +00:00
|
|
|
|
2012-10-27 19:20:32 +00:00
|
|
|
if (0) { # remember to re-enable t/dynamic.t
|
2012-10-24 14:17:09 +00:00
|
|
|
# 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,
|
|
|
|
);
|
|
|
|
push @{ $self->thin_fills }, map {
|
|
|
|
$_->isa('Slic3r::Polygon')
|
|
|
|
? (map $_->pack, Slic3r::ExtrusionLoop->new(polygon => $_, %path_args)->split_at_first_point) # we should keep these as loops
|
|
|
|
: Slic3r::ExtrusionPath->pack(polyline => $_, %path_args),
|
|
|
|
} map $_->medial_axis($flow->scaled_width), @this_width;
|
|
|
|
|
|
|
|
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
|
|
|
|
my @infill = map $_->offset_ex(-0.5*$flow->scaled_width), @this_width;
|
|
|
|
|
|
|
|
foreach my $expolygon (@infill) {
|
|
|
|
my @paths = $filler->fill_surface(
|
|
|
|
Slic3r::Surface->new(expolygon => $expolygon),
|
|
|
|
density => 1,
|
|
|
|
flow_spacing => $flow->spacing,
|
|
|
|
);
|
|
|
|
my $params = shift @paths;
|
|
|
|
|
|
|
|
push @{ $self->thin_fills },
|
2012-11-16 09:47:42 +00:00
|
|
|
map {
|
|
|
|
$_->polyline->simplify($flow->scaled_width / 3);
|
|
|
|
$_->pack;
|
|
|
|
}
|
|
|
|
map Slic3r::ExtrusionPath->new(
|
2012-10-24 14:17:09 +00:00
|
|
|
polyline => Slic3r::Polyline->new(@$_),
|
2012-11-21 18:00:43 +00:00
|
|
|
role => EXTR_ROLE_GAPFILL,
|
2012-10-28 13:22:51 +00:00
|
|
|
height => $self->height,
|
2012-10-24 14:17:09 +00:00
|
|
|
flow_spacing => $params->{flow_spacing},
|
|
|
|
), @paths;
|
|
|
|
}
|
|
|
|
}
|
2012-10-04 13:23:08 +00:00
|
|
|
|
|
|
|
# check what's left
|
|
|
|
@gaps = @{diff_ex(
|
|
|
|
[ map @$_, @gaps ],
|
|
|
|
[ map @$_, @this_width ],
|
|
|
|
)};
|
|
|
|
}
|
2012-09-22 17:04:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# process one island (original surface) at time
|
2013-02-06 11:03:53 +00:00
|
|
|
# islands are already sorted with a nearest-neighbor search
|
2012-09-22 17:04:36 +00:00
|
|
|
foreach my $island (@perimeters) {
|
|
|
|
# do holes starting from innermost one
|
|
|
|
my @holes = ();
|
|
|
|
my %is_external = ();
|
2013-02-06 11:03:53 +00:00
|
|
|
|
|
|
|
# each item of @$island contains the expolygons having the same depth;
|
|
|
|
# for each depth we build an arrayref containing all the holes
|
2012-09-22 17:04:36 +00:00
|
|
|
my @hole_depths = map [ map $_->holes, @$_ ], @$island;
|
|
|
|
|
2013-02-06 11:03:53 +00:00
|
|
|
# organize the outermost hole loops using a nearest-neighbor search
|
|
|
|
@{$hole_depths[0]} = @{chained_path_items([
|
2012-09-22 17:04:36 +00:00
|
|
|
map [ $_->[0], $_ ], @{$hole_depths[0]},
|
|
|
|
])};
|
|
|
|
|
2013-02-06 11:03:53 +00:00
|
|
|
# loop while we have spare holes
|
2012-09-22 17:04:36 +00:00
|
|
|
CYCLE: while (map @$_, @hole_depths) {
|
2013-02-06 11:03:53 +00:00
|
|
|
# remove first depth container if it contains no holes anymore
|
2012-09-22 17:04:36 +00:00
|
|
|
shift @hole_depths while !@{$hole_depths[0]};
|
|
|
|
|
|
|
|
# take first available hole
|
|
|
|
push @holes, shift @{$hole_depths[0]};
|
|
|
|
$is_external{$#holes} = 1;
|
|
|
|
|
|
|
|
my $current_depth = 0;
|
|
|
|
while (1) {
|
|
|
|
$current_depth++;
|
|
|
|
|
|
|
|
# look for the hole containing this one if any
|
|
|
|
next CYCLE if !$hole_depths[$current_depth];
|
|
|
|
my $parent_hole;
|
|
|
|
for (@{$hole_depths[$current_depth]}) {
|
|
|
|
if ($_->encloses_point($holes[-1]->[0])) {
|
|
|
|
$parent_hole = $_;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
next CYCLE if !$parent_hole;
|
|
|
|
|
|
|
|
# look for other holes contained in such parent
|
|
|
|
for (@{$hole_depths[$current_depth-1]}) {
|
|
|
|
if ($parent_hole->encloses_point($_->[0])) {
|
|
|
|
# we have a sibling, so let's move onto next iteration
|
|
|
|
next CYCLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
push @holes, $parent_hole;
|
|
|
|
@{$hole_depths[$current_depth]} = grep $_ ne $parent_hole, @{$hole_depths[$current_depth]};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# do holes, then contours starting from innermost one
|
|
|
|
$self->_add_perimeter($holes[$_], $is_external{$_} ? EXTR_ROLE_EXTERNAL_PERIMETER : undef)
|
|
|
|
for reverse 0 .. $#holes;
|
|
|
|
for my $depth (reverse 0 .. $#$island) {
|
|
|
|
my $role = $depth == $#$island ? EXTR_ROLE_CONTOUR_INTERNAL_PERIMETER
|
|
|
|
: $depth == 0 ? EXTR_ROLE_EXTERNAL_PERIMETER
|
|
|
|
: EXTR_ROLE_PERIMETER;
|
|
|
|
$self->_add_perimeter($_, $role) for map $_->contour, @{$island->[$depth]};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-24 10:04:44 +00:00
|
|
|
# if brim will be printed, reverse the order of perimeters so that
|
|
|
|
# we continue inwards after having finished the brim
|
|
|
|
if ($self->layer->id == 0 && $Slic3r::Config->brim_width > 0) {
|
|
|
|
@{$self->perimeters} = reverse @{$self->perimeters};
|
|
|
|
}
|
|
|
|
|
2012-09-22 17:04:36 +00:00
|
|
|
# add thin walls as perimeters
|
2012-10-31 18:08:29 +00:00
|
|
|
push @{ $self->perimeters }, Slic3r::ExtrusionPath::Collection->new(paths => [
|
|
|
|
map {
|
|
|
|
Slic3r::ExtrusionPath->pack(
|
|
|
|
polyline => ($_->isa('Slic3r::Polygon') ? $_->split_at_first_point : $_),
|
|
|
|
role => EXTR_ROLE_EXTERNAL_PERIMETER,
|
|
|
|
flow_spacing => $self->perimeter_flow->spacing,
|
|
|
|
);
|
|
|
|
} @{ $self->thin_walls }
|
2013-02-05 16:27:45 +00:00
|
|
|
])->chained_path;
|
2012-09-22 17:04:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub _add_perimeter {
|
|
|
|
my $self = shift;
|
|
|
|
my ($polygon, $role) = @_;
|
|
|
|
|
2013-02-18 10:52:47 +00:00
|
|
|
return unless $polygon->is_printable($self->perimeter_flow);
|
2012-09-22 17:04:36 +00:00
|
|
|
push @{ $self->perimeters }, Slic3r::ExtrusionLoop->pack(
|
|
|
|
polygon => $polygon,
|
2012-12-05 09:47:41 +00:00
|
|
|
role => ($role // EXTR_ROLE_PERIMETER),
|
2012-09-22 17:04:36 +00:00
|
|
|
flow_spacing => $self->perimeter_flow->spacing,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub prepare_fill_surfaces {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# if no solid layers are requested, turn top/bottom surfaces to internal
|
2012-11-16 11:37:47 +00:00
|
|
|
if ($Slic3r::Config->top_solid_layers == 0) {
|
2012-12-22 22:57:39 +00:00
|
|
|
$_->surface_type(S_TYPE_INTERNAL) for grep $_->surface_type == S_TYPE_TOP, @{$self->fill_surfaces};
|
2012-11-16 11:37:47 +00:00
|
|
|
}
|
|
|
|
if ($Slic3r::Config->bottom_solid_layers == 0) {
|
2012-12-22 22:57:39 +00:00
|
|
|
$_->surface_type(S_TYPE_INTERNAL) for grep $_->surface_type == S_TYPE_BOTTOM, @{$self->fill_surfaces};
|
2012-09-22 17:04:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# turn too small internal regions into solid regions
|
|
|
|
{
|
|
|
|
my $min_area = scale scale $Slic3r::Config->solid_infill_below_area; # scaling an area requires two calls!
|
2012-12-22 22:57:39 +00:00
|
|
|
my @small = grep $_->surface_type == S_TYPE_INTERNAL && $_->expolygon->contour->area <= $min_area, @{$self->fill_surfaces};
|
2012-09-22 17:04:36 +00:00
|
|
|
$_->surface_type(S_TYPE_INTERNALSOLID) for @small;
|
|
|
|
Slic3r::debugf "identified %d small solid surfaces at layer %d\n", scalar(@small), $self->id if @small > 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# make bridges printable
|
|
|
|
sub process_bridges {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
# no bridges are possible if we have no internal surfaces
|
|
|
|
return if $Slic3r::Config->fill_density == 0;
|
|
|
|
|
|
|
|
my @bridges = ();
|
|
|
|
|
|
|
|
# a bottom surface on a layer > 0 is either a bridge or a overhang
|
|
|
|
# or a combination of both; any top surface is a candidate for
|
|
|
|
# reverse bridge processing
|
|
|
|
|
|
|
|
my @solid_surfaces = grep {
|
|
|
|
($_->surface_type == S_TYPE_BOTTOM && $self->id > 0) || $_->surface_type == S_TYPE_TOP
|
|
|
|
} @{$self->fill_surfaces} or return;
|
|
|
|
|
|
|
|
my @internal_surfaces = grep { $_->surface_type == S_TYPE_INTERNAL || $_->surface_type == S_TYPE_INTERNALSOLID } @{$self->slices};
|
|
|
|
|
|
|
|
SURFACE: foreach my $surface (@solid_surfaces) {
|
|
|
|
my $expolygon = $surface->expolygon->safety_offset;
|
|
|
|
my $description = $surface->surface_type == S_TYPE_BOTTOM ? 'bridge/overhang' : 'reverse bridge';
|
|
|
|
|
|
|
|
# offset the contour and intersect it with the internal surfaces to discover
|
|
|
|
# which of them has contact with our bridge
|
|
|
|
my @supporting_surfaces = ();
|
2013-02-22 15:08:11 +00:00
|
|
|
my ($contour_offset) = $expolygon->contour->offset(scale $self->infill_flow->spacing * sqrt(2));
|
2012-09-22 17:04:36 +00:00
|
|
|
foreach my $internal_surface (@internal_surfaces) {
|
|
|
|
my $intersection = intersection_ex([$contour_offset], [$internal_surface->p]);
|
|
|
|
if (@$intersection) {
|
|
|
|
push @supporting_surfaces, $internal_surface;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0) {
|
|
|
|
require "Slic3r/SVG.pm";
|
2012-11-01 10:34:53 +00:00
|
|
|
Slic3r::SVG::output("bridge_surfaces.svg",
|
2012-09-22 17:04:36 +00:00
|
|
|
green_polygons => [ map $_->p, @supporting_surfaces ],
|
|
|
|
red_polygons => [ @$expolygon ],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Slic3r::debugf "Found $description on layer %d with %d support(s)\n",
|
|
|
|
$self->id, scalar(@supporting_surfaces);
|
|
|
|
|
|
|
|
next SURFACE unless @supporting_surfaces;
|
|
|
|
|
|
|
|
my $bridge_angle = undef;
|
|
|
|
if ($surface->surface_type == S_TYPE_BOTTOM) {
|
|
|
|
# detect optimal bridge angle
|
|
|
|
|
|
|
|
my $bridge_over_hole = 0;
|
|
|
|
my @edges = (); # edges are POLYLINES
|
|
|
|
foreach my $supporting_surface (@supporting_surfaces) {
|
|
|
|
my @surface_edges = map $_->clip_with_polygon($contour_offset),
|
|
|
|
($supporting_surface->contour, $supporting_surface->holes);
|
|
|
|
|
|
|
|
if (@supporting_surfaces == 1 && @surface_edges == 1
|
|
|
|
&& @{$supporting_surface->contour} == @{$surface_edges[0]}) {
|
|
|
|
$bridge_over_hole = 1;
|
|
|
|
}
|
|
|
|
push @edges, grep { @$_ } @surface_edges;
|
|
|
|
}
|
|
|
|
Slic3r::debugf " Bridge is supported on %d edge(s)\n", scalar(@edges);
|
|
|
|
Slic3r::debugf " and covers a hole\n" if $bridge_over_hole;
|
|
|
|
|
|
|
|
if (0) {
|
|
|
|
require "Slic3r/SVG.pm";
|
2012-11-01 10:34:53 +00:00
|
|
|
Slic3r::SVG::output("bridge_edges.svg",
|
2012-09-22 17:04:36 +00:00
|
|
|
polylines => [ map $_->p, @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);
|
2012-09-22 19:03:57 +00:00
|
|
|
$bridge_angle = Slic3r::Geometry::rad2deg_dir($line_between_midpoints->direction);
|
2012-09-22 17:04:36 +00:00
|
|
|
} 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]);
|
2012-09-22 19:03:57 +00:00
|
|
|
$bridge_angle = Slic3r::Geometry::rad2deg_dir($line->direction);
|
2012-09-22 17:04:36 +00:00
|
|
|
}
|
|
|
|
} elsif (@edges) {
|
2012-09-22 19:03:57 +00:00
|
|
|
my $center = Slic3r::Geometry::bounding_box_center([ map @$_, @edges ]);
|
2012-09-22 17:04:36 +00:00
|
|
|
my $x = my $y = 0;
|
|
|
|
foreach my $point (map @$, @edges) {
|
|
|
|
my $line = Slic3r::Line->new($center, $point);
|
|
|
|
my $dir = $line->direction;
|
|
|
|
my $len = $line->length;
|
|
|
|
$x += cos($dir) * $len;
|
|
|
|
$y += sin($dir) * $len;
|
|
|
|
}
|
2012-09-22 19:03:57 +00:00
|
|
|
$bridge_angle = Slic3r::Geometry::rad2deg_dir(atan2($y, $x));
|
2012-09-22 17:04:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Slic3r::debugf " Optimal infill angle of bridge on layer %d is %d degrees\n",
|
|
|
|
$self->id, $bridge_angle if defined $bridge_angle;
|
|
|
|
}
|
|
|
|
|
|
|
|
# now, extend our bridge by taking a portion of supporting surfaces
|
|
|
|
{
|
|
|
|
# offset the bridge by the specified amount of mm (minimum 3)
|
|
|
|
my $bridge_overlap = scale 3;
|
|
|
|
my ($bridge_offset) = $expolygon->contour->offset($bridge_overlap);
|
|
|
|
|
|
|
|
# calculate the new bridge
|
|
|
|
my $intersection = intersection_ex(
|
|
|
|
[ @$expolygon, map $_->p, @supporting_surfaces ],
|
|
|
|
[ $bridge_offset ],
|
|
|
|
);
|
|
|
|
|
|
|
|
push @bridges, map Slic3r::Surface->new(
|
|
|
|
expolygon => $_,
|
|
|
|
surface_type => $surface->surface_type,
|
|
|
|
bridge_angle => $bridge_angle,
|
|
|
|
), @$intersection;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# now we need to merge bridges to avoid overlapping
|
|
|
|
{
|
|
|
|
# build a list of unique bridge types
|
|
|
|
my @surface_groups = Slic3r::Surface->group(@bridges);
|
|
|
|
|
|
|
|
# merge bridges of the same type, removing any of the bridges already merged;
|
|
|
|
# the order of @surface_groups determines the priority between bridges having
|
|
|
|
# different surface_type or bridge_angle
|
|
|
|
@bridges = ();
|
|
|
|
foreach my $surfaces (@surface_groups) {
|
|
|
|
my $union = union_ex([ map $_->p, @$surfaces ]);
|
|
|
|
my $diff = diff_ex(
|
|
|
|
[ map @$_, @$union ],
|
|
|
|
[ map $_->p, @bridges ],
|
|
|
|
);
|
|
|
|
|
|
|
|
push @bridges, map Slic3r::Surface->new(
|
|
|
|
expolygon => $_,
|
|
|
|
surface_type => $surfaces->[0]->surface_type,
|
|
|
|
bridge_angle => $surfaces->[0]->bridge_angle,
|
|
|
|
), @$union;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# apply bridges to layer
|
|
|
|
{
|
|
|
|
my @surfaces = @{$self->fill_surfaces};
|
|
|
|
@{$self->fill_surfaces} = ();
|
|
|
|
|
|
|
|
# intersect layer surfaces with bridges to get actual bridges
|
|
|
|
foreach my $bridge (@bridges) {
|
|
|
|
my $actual_bridge = intersection_ex(
|
|
|
|
[ map $_->p, @surfaces ],
|
|
|
|
[ $bridge->p ],
|
|
|
|
);
|
|
|
|
|
|
|
|
push @{$self->fill_surfaces}, map Slic3r::Surface->new(
|
|
|
|
expolygon => $_,
|
|
|
|
surface_type => $bridge->surface_type,
|
|
|
|
bridge_angle => $bridge->bridge_angle,
|
|
|
|
), @$actual_bridge;
|
|
|
|
}
|
|
|
|
|
|
|
|
# difference between layer surfaces and bridges are the other surfaces
|
|
|
|
foreach my $group (Slic3r::Surface->group(@surfaces)) {
|
|
|
|
my $difference = diff_ex(
|
|
|
|
[ map $_->p, @$group ],
|
|
|
|
[ map $_->p, @bridges ],
|
|
|
|
);
|
|
|
|
push @{$self->fill_surfaces}, map Slic3r::Surface->new(
|
|
|
|
expolygon => $_,
|
|
|
|
surface_type => $group->[0]->surface_type), @$difference;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|