Superellipsoid.java
.. .. @@ -30,9 +30,9 @@ 30 30 return s; 31 31 } 32 32 33 - protected void deepCopySelf(Object3D other)33 + protected void deepCopyNode(Object3D other)34 34 { 35 - super.deepCopySelf(other);35 + super.deepCopyNode(other);36 36 Superellipsoid s = (Superellipsoid)other; 37 37 s.east = east; 38 38 s.north = north; .. .. @@ -153,6 +153,11 @@ 153 153 return 2; 154 154 } 155 155 156 + double vFlip(double v)157 + {158 + return 1-v;159 + }160 +156 161 Vertex biparamFunction(double u, double v) 157 162 { 158 163 //System.out.println("U = " + u + "; V = " + v);