From e79247ef52a0bbb3864d46bb1e2c716005b3ecf3 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Thu, 18 Jul 2019 22:19:40 -0400 Subject: [PATCH] Move XYZ panel + icons. --- Object3D.java | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/Object3D.java b/Object3D.java index 750acd4..94907db 100644 --- a/Object3D.java +++ b/Object3D.java @@ -29,6 +29,9 @@ Object3D saveskeleton; // + byte[] versions[] = new byte[100][]; + int versionindex = -1; + ScriptNode scriptnode; void InitOthers() @@ -215,6 +218,9 @@ // o.transientrep = this.bRep.support; // o.bRep.support = null; // } + o.selection = this.selection; + o.versions = this.versions; + o.versionindex = this.versionindex; if (this.support != null) { @@ -268,6 +274,11 @@ { this.support.bRep = o.transientrep; } + + this.selection = o.selection; + + this.versions = o.versions; + this.versionindex = o.versionindex; // July 2019 if (this.bRep != null) // this.bRep.support = o.transientrep; // this.support = o.support; @@ -3106,7 +3117,7 @@ { if (bRep != null) { - bRep.GenerateNormalsMINE(); + bRep.MergeNormals(); //.GenerateNormalsMINE(); Touch(); } } -- Gitblit v1.6.2