mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 20:51:23 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			422 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			422 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
use Test::More tests => 1;
 | 
						|
use strict;
 | 
						|
use warnings;
 | 
						|
 | 
						|
BEGIN {
 | 
						|
    use FindBin;
 | 
						|
    use lib "$FindBin::Bin/../lib";
 | 
						|
}
 | 
						|
 | 
						|
use Slic3r;
 | 
						|
use Slic3r::Geometry qw(scale);
 | 
						|
 | 
						|
{
 | 
						|
    local $Slic3r::Config = Slic3r::Config->new_from_defaults;
 | 
						|
    my $gcodegen = Slic3r::GCode->new(layer_count => 1);
 | 
						|
    $gcodegen->set_shift(10, 10);
 | 
						|
    is_deeply $gcodegen->last_pos, [scale -10, scale -10], 'last_pos is shifted correctly';
 | 
						|
}
 | 
						|
 | 
						|
__END__
 |