Print solid infill without cutting an internal surface under small regions such as pillars. #39

This commit is contained in:
Alessandro Ranellucci 2011-11-16 16:35:20 +01:00
parent 47c0da8110
commit 8aca717209
4 changed files with 24 additions and 7 deletions

View file

@ -65,4 +65,9 @@ sub rotate {
@$self = rotate_points($angle, $center, @$self);
}
sub area {
my $self = shift;
return Slic3r::Geometry::Clipper::area($self);
}
1;