cMesh.java
.. .. @@ -417,12 +417,14 @@ 417 417 ref.count = 1; 418 418 419 419 Object3D obj = ref.GetObject(); 420 + Object3D par = obj.parent;421 + obj.parent = null;420 422 421 423 // may 2014: side-effect with UVs!! 422 - obj = (Object3D) Grafreed.clone(obj);423 -424 - merge(obj);424 + merge((Object3D) Grafreed.clone(obj));425 425 426 + obj.parent = par;427 +426 428 ref.count = keepcount; 427 429 428 430 System.out.println("RESULT " + ref + "; #vertices = " + bRep.VertexCount() + "; #faces = " + bRep.FaceCount());