PrusaSlicer-NonPlainar/lib/Slic3r/Point.pm
2013-07-15 20:31:43 +02:00

11 lines
187 B
Perl

package Slic3r::Point;
use strict;
use warnings;
sub distance_to {
my $self = shift;
my ($point) = @_;
return Slic3r::Geometry::distance_between_points($self, $point);
}
1;