From 3057014dcfd23a0cd165a1f9e648bca1ccbcbbb2 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Thu, 1 Nov 2018 15:15:46 +0100 Subject: [PATCH] WIP Fixed "below the print bed" issue on arrange. Still the auto arrange does not take into account the current full transformation matrix. --- src/libslic3r/ModelArrange.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/ModelArrange.hpp b/src/libslic3r/ModelArrange.hpp index dffb951ddf..c64dc65ee4 100644 --- a/src/libslic3r/ModelArrange.hpp +++ b/src/libslic3r/ModelArrange.hpp @@ -672,7 +672,7 @@ void applyResult( Radians rot = item.rotation(); Vec3d foff(off.X*SCALING_FACTOR + batch_offset, off.Y*SCALING_FACTOR, - 0.0); + inst_ptr->get_offset()(2)); // write the transformation data into the model instance inst_ptr->set_rotation(Z, rot);