mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 13:17:54 -06:00
Bugfix: some holes were filled. #291
This commit is contained in:
parent
f380b1007d
commit
0afb5ad9dd
5 changed files with 21 additions and 19 deletions
|
@ -37,6 +37,21 @@ sub lines {
|
|||
return @lines;
|
||||
}
|
||||
|
||||
sub is_counter_clockwise {
|
||||
my $self = shift;
|
||||
return Math::Clipper::is_counter_clockwise($self);
|
||||
}
|
||||
|
||||
sub make_counter_clockwise {
|
||||
my $self = shift;
|
||||
$self->reverse if !$self->is_counter_clockwise;
|
||||
}
|
||||
|
||||
sub make_clockwise {
|
||||
my $self = shift;
|
||||
$self->reverse if $self->is_counter_clockwise;
|
||||
}
|
||||
|
||||
sub cleanup {
|
||||
my $self = shift;
|
||||
$self->merge_continuous_lines;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue