Grid.java
.. .. @@ -62,9 +62,14 @@ 62 62 */ 63 63 } 64 64 65 + double uStretch()66 + {67 + return 1;68 + }69 +65 70 Vertex biparamFunction(double u, double v) 66 71 { 67 - Vertex temp = new Vertex((2*v-1)*radius*8, 0 /*-radius,*/, (2*u-1)*radius*8);72 + Vertex temp = new Vertex((2*v-1)*radius*4, 0 /*-radius,*/, (2*u-1)*radius*4);68 73 temp.norm = LA.newVector(0,1,0); 69 74 return temp; 70 75 }