mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-18 09:29:05 -07: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;
|