From f9325048496d7cdbcad233f8a6b84c88e79adcc2 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Tue, 17 Sep 2019 20:11:47 -0400 Subject: [PATCH] Rename link2master to link2support. --- Blob.java | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Blob.java b/Blob.java index 9e22b13..69de286 100644 --- a/Blob.java +++ b/Blob.java @@ -21,9 +21,9 @@ return blob; } - protected void deepCopySelf(Object3D other) + protected void deepCopyNode(Object3D other) { - super.deepCopySelf(other); + super.deepCopyNode(other); Blob b = (Blob)other; b.threshold = threshold; b.cellSize = cellSize; @@ -82,6 +82,7 @@ void retile() { + new Exception().printStackTrace(); System.exit(0); ClearList(); bRep = (new ImplicitTiler(this, ImplicitTiler.SURFACEID, true, true, true, cellSize, cellSize, tolerance, true)).bRep; -- Gitblit v1.6.2