mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-03 01:05:14 +08:00
12 lines
187 B
Perl
12 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;
|