From: daid303 Date: Thu, 25 Apr 2013 14:28:16 +0000 (+0200) Subject: Copy the rotation/scaling when making a split object. X-Git-Tag: 13.05~47 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=97e42984f443e1336353696a95d3eac9d04fb7f8;p=cura.git Copy the rotation/scaling when making a split object. --- 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