mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 12:11:15 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			434 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			434 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| #!/usr/bin/perl
 | |
| 
 | |
| use strict;
 | |
| use warnings;
 | |
| 
 | |
| use Slic3r::XS;
 | |
| use Test::More tests => 3;
 | |
| 
 | |
| {
 | |
|     my $model = Slic3r::Model->new;
 | |
|     my $object = $model->_add_object;
 | |
|     isa_ok $object, 'Slic3r::Model::Object::Ref';
 | |
|     isa_ok $object->origin_translation, 'Slic3r::Pointf::Ref';
 | |
|     $object->origin_translation->translate(10,0);
 | |
|     is_deeply \@{$object->origin_translation}, [10,0], 'origin_translation is modified by ref';
 | |
| }
 | |
| 
 | |
| __END__
 | 
