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

---
 GroupEditor.java |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/GroupEditor.java b/GroupEditor.java
index b4f001a..d52863f 100644
--- a/GroupEditor.java
+++ b/GroupEditor.java
@@ -2542,7 +2542,7 @@
 		} else
 		if (source == genNormalsMESHItem)
                 {
-			GenNormals(true); // TODO
+			GenNormalsMESH();
 		} else
 		if (source == genNormalsORGANItem)
                 {
@@ -3429,7 +3429,8 @@
                     
                     int size = obj.MemorySize();
                     
-                    System.err.println((size/1024) + " KB is the size of " + obj);
+                    //System.err.println((size/1024) + " KB is the size of " + obj);
+                    System.err.println("the size of " + obj + " is " + size + " (" + (size/1024) + "KB)");
                 }
             }
             catch (Exception e)
@@ -3514,6 +3515,13 @@
 		refreshContents();
 	}
 	
+	void GenNormalsMESH()
+	{
+		group.GenNormalsMeshS();
+		
+		refreshContents();
+	}
+	
 	void GenNormalsMINE()
 	{
 		group.selection.GenNormalsMINE();

--
Gitblit v1.6.2