Bugfix: arcs now work (some glitches in detecting their center, though). #30

This commit is contained in:
Alessandro Ranellucci 2011-11-07 14:12:07 +01:00
parent 8172bcb772
commit d620b46beb
4 changed files with 85 additions and 44 deletions

View file

@ -57,7 +57,7 @@ sub cleanup {
sub detect_arcs {
my $self = shift;
@{$self->paths} = map $_->detect_arcs, @{$self->paths};
@{$self->paths} = map $_->detect_arcs(@_), @{$self->paths};
}
1;