From 4629090fafbef256abd0686a85ee12042d658868 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Wed, 12 Jun 2019 22:37:48 -0400 Subject: [PATCH] Mocap big data --- 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