mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-04 02:44:02 +08:00
11 lines
156 B
Perl
11 lines
156 B
Perl
package Slic3r::Point;
|
|
use strict;
|
|
use warnings;
|
|
|
|
sub new_scale {
|
|
my $class = shift;
|
|
return $class->new(map Slic3r::Geometry::scale($_), @_);
|
|
}
|
|
|
|
1;
|