Grid.java
.. .. @@ -4,6 +4,11 @@ 4 4 5 5 Grid() 6 6 { 7 + this(35, 34);8 + }9 +10 + Grid(int u, int v)11 + {7 12 super(false); 8 13 //this(true); 9 14 //} .. .. @@ -12,8 +17,8 @@ 12 17 //{ 13 18 inPnt = new cVector(); 14 19 name = "Grid"; 15 - uDivs = 35;16 - vDivs = 34;20 + uDivs = u;21 + vDivs = v;17 22 minUDivs = 1; 18 23 minVDivs = 1; 19 24 center = new cVector();