From b33ef80d78f01a6a61f4248b1bb7deaade42d503 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Sun, 16 Jun 2019 11:49:21 -0400
Subject: [PATCH] Attribute editor

---
 Grid.java |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/Grid.java b/Grid.java
index 8a2d40b..1780c12 100644
--- a/Grid.java
+++ b/Grid.java
@@ -4,6 +4,11 @@
 
     Grid()
     {
+        this(36, 36);
+    }
+
+    Grid(int u, int v)
+    {
 		super(false);
 		//this(true);
 	//}
@@ -12,8 +17,8 @@
 	//{
         inPnt = new cVector();
         name = "Grid";
-        uDivs = 35;
-        vDivs = 34;
+        uDivs = u;
+        vDivs = v;
         minUDivs = 1;
 		minVDivs = 1;
         center = new cVector();

--
Gitblit v1.6.2