mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 20:21:12 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			187 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			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;
 | 
