Customizable speed for small perimeters. #60

This commit is contained in:
Alessandro Ranellucci 2011-12-04 20:50:03 +01:00
parent ea254588f7
commit 53bc9c7421
8 changed files with 28 additions and 1 deletions

View file

@ -40,4 +40,9 @@ sub is_valid {
return @{$self->points} >= 3;
}
sub polygon {
my $self = shift;
return Slic3r::Polygon->new($self->points);
}
1;