Normand Briere
2019-09-18 f9325048496d7cdbcad233f8a6b84c88e79adcc2
MorphNode.java
....@@ -7,7 +7,7 @@
77 Object3D morphobject;
88
99 // MORPH weights
10
- double morphweights[];
10
+ double[] morphweights;
1111
1212 MorphNode(Object3D object)
1313 {
....@@ -107,9 +107,9 @@
107107 return e;
108108 }
109109
110
- protected void deepCopySelf(Object3D other)
110
+ protected void deepCopyNode(Object3D other)
111111 {
112
- super.deepCopySelf(other);
112
+ super.deepCopyNode(other);
113113 MorphNode bp = (MorphNode)other;
114114
115115 bp.morphweights = (double[]) Grafreed.clone(morphweights);