From 97e42984f443e1336353696a95d3eac9d04fb7f8 Mon Sep 17 00:00:00 2001 From: daid303 Date: Thu, 25 Apr 2013 16:28:16 +0200 Subject: [PATCH] Copy the rotation/scaling when making a split object. --- Cura/util/mesh.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cura/util/mesh.py b/Cura/util/mesh.py index 919e202a..11e1431d 100644 --- a/Cura/util/mesh.py +++ b/Cura/util/mesh.py @@ -198,6 +198,7 @@ class printableObject(object): for m in oriMesh.split(callback): obj = printableObject() obj._meshList.append(m) + obj._matrix = self._matrix.copy() obj._postProcessAfterLoad() ret.append(obj) return ret -- 2.30.2