From: daid Date: Tue, 26 Nov 2013 12:25:43 +0000 (+0100) Subject: Copy the hull when making an object copy. X-Git-Tag: 14.01~59 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=2600ee798c7551361ff9795fb12e71cd22f9778b;p=cura.git Copy the hull when making an object copy. --- diff --git a/Cura/util/mesh.py b/Cura/util/mesh.py index ac60f870..9d641426 100644 --- a/Cura/util/mesh.py +++ b/Cura/util/mesh.py @@ -72,6 +72,7 @@ class printableObject(object): ret._transformedMax = self._transformedMax.copy() ret._transformedSize = self._transformedSize.copy() ret._boundaryCircleSize = self._boundaryCircleSize + ret._boundaryHull = self._boundaryHull.copy() ret._drawOffset = self._drawOffset.copy() for m in self._meshList[:]: m2 = ret._addMesh()