Normand Briere
2018-05-22 42107f9a01652cb2f47228d20c1148a2a22f6a63
Grid.java
....@@ -4,6 +4,11 @@
44
55 Grid()
66 {
7
+ this(35, 34);
8
+ }
9
+
10
+ Grid(int u, int v)
11
+ {
712 super(false);
813 //this(true);
914 //}
....@@ -12,8 +17,8 @@
1217 //{
1318 inPnt = new cVector();
1419 name = "Grid";
15
- uDivs = 35;
16
- vDivs = 34;
20
+ uDivs = u;
21
+ vDivs = v;
1722 minUDivs = 1;
1823 minVDivs = 1;
1924 center = new cVector();