mirror of https://github.com/vitalif/Slic3r
19 lines
434 B
Perl
19 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__
|