Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t/print.t
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2013-09-11 13:55:08 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-09-11 13:55:08 +0400
commita821eb7f3c1d8278328d5abb8e15ce98f00eb6e1 (patch)
treeaf4790fc75b3c19f957202dc031e4e8f37367198 /t/print.t
parent11e18f681d701e82089a0a811e8663cd8f7ccc1b (diff)
More work to avoid working with vertices outside XS
Diffstat (limited to 't/print.t')
-rw-r--r--t/print.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/print.t b/t/print.t
index 485ad12bb..743c06dc3 100644
--- a/t/print.t
+++ b/t/print.t
@@ -13,7 +13,7 @@ use Slic3r::Test;
{
my $print = Slic3r::Test::init_print('20mm_cube', rotation => 45);
- ok !(first { $_ < 0 } map @$_, map @{$_->used_vertices}, grep $_, map @{$_->meshes}, @{$print->objects}),
+ ok !(first { $_ < 0 } map @$_, map @{$_->vertices}, grep $_, map @{$_->meshes}, @{$print->objects}),
"object is still in positive coordinate space even after rotation";
}