Normand Briere
2019-10-05 8768a855af9ccc482a9520ce708ef32e0e6e0e7d
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 {
....@@ -19,7 +19,7 @@
1919 {
2020 CreateMaterial();
2121 morphobject.get(0).bRep.SaveSupports();
22
- bRep = (BoundaryRep) GrafreeD.clone(morphobject.get(0).bRep);
22
+ bRep = (BoundaryRep) Grafreed.clone(morphobject.get(0).bRep);
2323 morphobject.get(0).bRep.RestoreSupports();
2424 }
2525
....@@ -30,7 +30,7 @@
3030 duplicate.parent = null;
3131 Object3D sup = duplicate.support;
3232 duplicate.support = null;
33
- addChild((Object3D)GrafreeD.clone(duplicate));
33
+ addChild((Object3D)Grafreed.clone(duplicate));
3434 duplicate.parent = par;
3535 duplicate.support = sup;
3636 }
....@@ -107,12 +107,12 @@
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
115
- bp.morphweights = (double[]) GrafreeD.clone(morphweights);
115
+ bp.morphweights = (double[]) Grafreed.clone(morphweights);
116116 }
117117
118118 void createEditWindow(GroupEditor callee, boolean newWindow)