.. | .. |
---|
21 | 21 | return blob; |
---|
22 | 22 | } |
---|
23 | 23 | |
---|
24 | | - protected void deepCopySelf(Object3D other) |
---|
| 24 | + protected void deepCopyNode(Object3D other) |
---|
25 | 25 | { |
---|
26 | | - super.deepCopySelf(other); |
---|
| 26 | + super.deepCopyNode(other); |
---|
27 | 27 | Blob b = (Blob)other; |
---|
28 | 28 | b.threshold = threshold; |
---|
29 | 29 | b.cellSize = cellSize; |
---|
.. | .. |
---|
82 | 82 | |
---|
83 | 83 | void retile() |
---|
84 | 84 | { |
---|
| 85 | + new Exception().printStackTrace(); |
---|
85 | 86 | System.exit(0); |
---|
86 | 87 | ClearList(); |
---|
87 | 88 | bRep = (new ImplicitTiler(this, ImplicitTiler.SURFACEID, true, true, true, cellSize, cellSize, tolerance, true)).bRep; |
---|