mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-06 13:34:05 -06:00
Do hole perimeters in ccw direction too
This commit is contained in:
parent
b6bffacb9d
commit
f2e1fe5241
2 changed files with 6 additions and 0 deletions
|
@ -30,6 +30,11 @@ sub clone {
|
|||
return (ref $self)->new(map $_->clone, @$self);
|
||||
}
|
||||
|
||||
sub reverse {
|
||||
my $self = shift;
|
||||
@$self = reverse @$self;
|
||||
}
|
||||
|
||||
sub lines {
|
||||
my $self = shift;
|
||||
return map Slic3r::Line->new($_), polygon_lines($self);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue