37 lines
897 B
Perl
37 lines
897 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.0002, 'all retractions are compensated';
|
|
}
|
|
|
|
|
|
__END__
|