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
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2014-08-04 13:47:15 +0400
committerAlessandro Ranellucci <aar@cpan.org>2014-08-04 13:47:15 +0400
commit1fa99b8d3e4aa3a730a0e9be369656d1eb63e6e0 (patch)
tree9527a39193ed9e2dacf3c38823c664a1d2504683
parentd9f6b0933b3f76286c8e5b28ef3bacfd0c212b55 (diff)
Typo
-rw-r--r--lib/Slic3r/Print.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Slic3r/Print.pm b/lib/Slic3r/Print.pm
index 90fe5df22..4c3a04107 100644
--- a/lib/Slic3r/Print.pm
+++ b/lib/Slic3r/Print.pm
@@ -247,7 +247,7 @@ sub validate {
my $convex_hull = convex_hull([ map @$_, @mesh_convex_hulls ]);
# apply the same transformations we apply to the actual meshes when slicing them
- $object->model_object->instances->[0]->transform_polygon($convex_hull, 1);
+ $object->model_object->instances->[0]->transform_polygon($convex_hull);
# align object to Z = 0 and apply XY shift
$convex_hull->translate(@{$object->_copies_shift});