Ported ExtrusionLoop->make_counter_clockwise()

This commit is contained in:
Alessandro Ranellucci 2013-08-29 01:40:42 +02:00
parent 5d6fd7f4d9
commit ea1d138c95
4 changed files with 8 additions and 9 deletions

View file

@ -13,13 +13,4 @@ sub split_at {
);
}
sub make_counter_clockwise {
my $self = shift;
if (!$self->polygon->is_counter_clockwise) {
$self->reverse;
return 1;
}
return 0;
}
1;