Fixes to the new bridging algorithm. It appears to be working fine now

This commit is contained in:
Alessandro Ranellucci 2011-11-20 22:09:59 +01:00
parent 4a9fc942cb
commit bde3c11e82
2 changed files with 17 additions and 9 deletions

View file

@ -53,6 +53,13 @@ sub offset {
return @$offsets;
}
sub safety_offset {
my $self = shift;
return (ref $self)->new(
@{ Slic3r::Geometry::Clipper::safety_offset([@$self]) },
);
}
sub offset_ex {
my $self = shift;
my @offsets = $self->offset(@_);