Move arc fitting code to its own post-processing filter and remove the built-in ExtrusionPath::Arc class

This commit is contained in:
Alessandro Ranellucci 2013-08-28 19:50:16 +02:00
parent 0049b02bed
commit b700278904
10 changed files with 154 additions and 188 deletions

View file

@ -20,6 +20,11 @@ sub new {
return $self;
}
sub new_scale {
my $class = shift;
return $class->new(map Slic3r::Geometry::scale($_), @_);
}
sub clone {
Storable::dclone($_[0])
}