Use the same bridging logic for "reverse bridges" (top surfaces)

This commit is contained in:
Alessandro Ranellucci 2011-11-17 10:34:40 +01:00
parent 6ec7069f8e
commit 580f42c1de
2 changed files with 48 additions and 40 deletions

View file

@ -70,4 +70,9 @@ sub area {
return Slic3r::Geometry::Clipper::area($self);
}
sub safety_offset {
my $self = shift;
return (ref $self)->new(Slic3r::Geometry::Clipper::safety_offset([$self])->[0]);
}
1;