mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 12:41:18 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			156 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			10 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;
 |