Fix last_pos shifting and add unit test

This commit is contained in:
Alessandro Ranellucci 2013-01-27 13:06:45 +01:00
parent ad48fdc7f9
commit ddaeaa7591
3 changed files with 22 additions and 0 deletions

View file

@ -59,6 +59,7 @@ t/collinear.t
t/custom_gcode.t
t/dynamic.t
t/fill.t
t/gcode.t
t/geometry.t
t/layers.t
t/loops.t

View file

@ -62,6 +62,7 @@ sub set_shift {
my $self = shift;
my @shift = @_;
# if shift increases (goes towards right), last_pos decreases because it goes towards left
$self->last_pos->translate(
scale ($self->shift_x - $shift[X]),
scale ($self->shift_y - $shift[Y]),

20
t/gcode.t Normal file
View file

@ -0,0 +1,20 @@
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__