Normand Briere
2019-06-30 cfd7a643cb5a445016ddb15595158ecc59b184fd
Grid.java
....@@ -4,7 +4,7 @@
44
55 Grid()
66 {
7
- this(35, 34);
7
+ this(36, 36);
88 }
99
1010 Grid(int u, int v)
....@@ -64,7 +64,7 @@
6464
6565 Vertex biparamFunction(double u, double v)
6666 {
67
- Vertex temp = new Vertex((2*v-1)*radius*8, 0 /*-radius,*/, (2*u-1)*radius*8);
67
+ Vertex temp = new Vertex((2*v-1)*radius*4, 0 /*-radius,*/, (2*u-1)*radius*4);
6868 temp.norm = LA.newVector(0,1,0);
6969 return temp;
7070 }