2011-09-25 21:15:45 +00:00
|
|
|
package Slic3r::ExtrusionLoop;
|
|
|
|
use Moo;
|
|
|
|
|
|
|
|
|
2011-12-30 18:59:51 +00:00
|
|
|
# the underlying Slic3r::Polygon objects holds the geometry
|
|
|
|
has 'polygon' => (
|
|
|
|
is => 'ro',
|
|
|
|
required => 1,
|
|
|
|
handles => [qw(is_printable nearest_point_to)],
|
|
|
|
);
|
2011-09-25 21:15:45 +00:00
|
|
|
|
2011-11-28 18:11:26 +00:00
|
|
|
# perimeter/fill/solid-fill/bridge/skirt
|
2011-12-05 11:15:52 +00:00
|
|
|
has 'role' => (is => 'rw', required => 1);
|
2011-11-28 17:37:53 +00:00
|
|
|
|
2011-12-30 18:59:51 +00:00
|
|
|
sub BUILD {
|
|
|
|
my $self = shift;
|
|
|
|
bless $self->polygon, 'Slic3r::Polygon';
|
|
|
|
}
|
|
|
|
|
2011-09-25 21:15:45 +00:00
|
|
|
sub split_at {
|
|
|
|
my $self = shift;
|
|
|
|
my ($point) = @_;
|
|
|
|
|
2011-10-12 12:54:49 +00:00
|
|
|
$point = Slic3r::Point->new($point);
|
2011-09-25 21:15:45 +00:00
|
|
|
|
|
|
|
# find index of point
|
|
|
|
my $i = -1;
|
2012-01-12 21:05:35 +00:00
|
|
|
for (my $n = 0; $n <= $#{$self->polygon}; $n++) {
|
2011-12-30 18:59:51 +00:00
|
|
|
if ($point->id eq $self->polygon->[$n]->id) {
|
2011-09-25 21:15:45 +00:00
|
|
|
$i = $n;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
die "Point not found" if $i == -1;
|
|
|
|
|
|
|
|
my @new_points = ();
|
2011-12-30 18:59:51 +00:00
|
|
|
push @new_points, @{$self->polygon}[$i .. $#{$self->polygon}];
|
|
|
|
push @new_points, @{$self->polygon}[0 .. $i];
|
2011-09-25 21:15:45 +00:00
|
|
|
|
2011-12-30 18:59:51 +00:00
|
|
|
return Slic3r::ExtrusionPath->new(
|
|
|
|
polyline => Slic3r::Polyline->new(\@new_points),
|
|
|
|
role => $self->role,
|
|
|
|
);
|
2011-09-25 21:15:45 +00:00
|
|
|
}
|
|
|
|
|
2012-02-19 11:03:36 +00:00
|
|
|
sub split_at_first_point {
|
|
|
|
my $self = shift;
|
|
|
|
return $self->split_at($self->polygon->[0]);
|
|
|
|
}
|
|
|
|
|
2011-09-25 21:15:45 +00:00
|
|
|
1;
|