MorphNode.java
.. .. @@ -7,7 +7,7 @@ 7 7 Object3D morphobject; 8 8 9 9 // MORPH weights 10 - double morphweights[];10 + double[] morphweights;11 11 12 12 MorphNode(Object3D object) 13 13 { .. .. @@ -107,9 +107,9 @@ 107 107 return e; 108 108 } 109 109 110 - protected void deepCopySelf(Object3D other)110 + protected void deepCopyNode(Object3D other)111 111 { 112 - super.deepCopySelf(other);112 + super.deepCopyNode(other);113 113 MorphNode bp = (MorphNode)other; 114 114 115 115 bp.morphweights = (double[]) Grafreed.clone(morphweights);