Normand Briere
2019-09-18 f9325048496d7cdbcad233f8a6b84c88e79adcc2
Blob.java
....@@ -21,9 +21,9 @@
2121 return blob;
2222 }
2323
24
- protected void deepCopySelf(Object3D other)
24
+ protected void deepCopyNode(Object3D other)
2525 {
26
- super.deepCopySelf(other);
26
+ super.deepCopyNode(other);
2727 Blob b = (Blob)other;
2828 b.threshold = threshold;
2929 b.cellSize = cellSize;
....@@ -82,6 +82,7 @@
8282
8383 void retile()
8484 {
85
+ new Exception().printStackTrace();
8586 System.exit(0);
8687 ClearList();
8788 bRep = (new ImplicitTiler(this, ImplicitTiler.SURFACEID, true, true, true, cellSize, cellSize, tolerance, true)).bRep;