2011-09-25 23:15:45 +02:00
|
|
|
package Slic3r::ExtrusionLoop;
|
2013-07-15 16:21:09 +02:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2011-09-25 23:15:45 +02:00
|
|
|
|
|
|
|
sub split_at {
|
|
|
|
my $self = shift;
|
|
|
|
|
2012-10-30 15:29:13 +01:00
|
|
|
return Slic3r::ExtrusionPath->new(
|
2013-07-16 09:49:34 +02:00
|
|
|
polyline => $self->polygon->split_at(@_),
|
2012-10-30 15:29:13 +01:00
|
|
|
role => $self->role,
|
|
|
|
flow_spacing => $self->flow_spacing,
|
2013-07-15 16:21:09 +02:00
|
|
|
height => $self->height,
|
2012-10-30 15:29:13 +01:00
|
|
|
);
|
2011-09-25 23:15:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|