mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 20:21:12 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			895 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			895 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| use Test::More tests => 1;
 | |
| use strict;
 | |
| use warnings;
 | |
| 
 | |
| BEGIN {
 | |
|     use FindBin;
 | |
|     use lib "$FindBin::Bin/../lib";
 | |
| }
 | |
| 
 | |
| use List::Util qw();
 | |
| use Slic3r;
 | |
| use Slic3r::Geometry qw(epsilon);
 | |
| use Slic3r::Test;
 | |
| 
 | |
| {
 | |
|     my $config = Slic3r::Config->new_from_defaults;
 | |
|     $config->set('pressure_advance', 10);
 | |
|     $config->set('retract_length', [1]);
 | |
|     
 | |
|     my $print = Slic3r::Test::init_print('20mm_cube', config => $config, duplicate => 2);
 | |
|     my $retracted = $config->retract_length->[0];
 | |
|     Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
 | |
|         my ($self, $cmd, $args, $info) = @_;
 | |
|         
 | |
|         if ($info->{extruding} && !$info->{dist_XY}) {
 | |
|             $retracted += $info->{dist_E};
 | |
|         } elsif ($info->{retracting}) {
 | |
|             $retracted += $info->{dist_E};
 | |
|         }
 | |
|     });
 | |
|     
 | |
|     ok abs($retracted) < 0.01, 'all retractions are compensated';
 | |
| }
 | |
| 
 | |
| 
 | |
| __END__
 | 
