Normand Briere
2019-09-18 f9325048496d7cdbcad233f8a6b84c88e79adcc2
Superellipsoid.java
....@@ -30,9 +30,9 @@
3030 return s;
3131 }
3232
33
- protected void deepCopySelf(Object3D other)
33
+ protected void deepCopyNode(Object3D other)
3434 {
35
- super.deepCopySelf(other);
35
+ super.deepCopyNode(other);
3636 Superellipsoid s = (Superellipsoid)other;
3737 s.east = east;
3838 s.north = north;
....@@ -153,6 +153,11 @@
153153 return 2;
154154 }
155155
156
+ double vFlip(double v)
157
+ {
158
+ return 1-v;
159
+ }
160
+
156161 Vertex biparamFunction(double u, double v)
157162 {
158163 //System.out.println("U = " + u + "; V = " + v);