Normand Briere
2019-09-18 f9325048496d7cdbcad233f8a6b84c88e79adcc2
ImplicitTiler.java
....@@ -194,8 +194,8 @@
194194 {
195195 // Merge normals: tolerance == 0 means use analytic,
196196 // tolerance == 10 means use generated normals
197
- BoundaryRep analytic = (BoundaryRep) GrafreeD.clone(bRep);
198
- BoundaryRep generated = (BoundaryRep) GrafreeD.clone(bRep);
197
+ BoundaryRep analytic = (BoundaryRep) Grafreed.clone(bRep);
198
+ BoundaryRep generated = (BoundaryRep) Grafreed.clone(bRep);
199199
200200 analytic.Trim(trim, false, false, stripify, true);
201201 generated.Trim(trim, true, false, stripify, true);
....@@ -365,6 +365,7 @@
365365
366366 void subdivide(double x[], double y[], double z[], int dimension)
367367 {
368
+ new Exception().printStackTrace();
368369 System.exit(0);
369370 boolean out[] = new boolean[2];
370371 implicit.boxInside(x, y, z, out);
....@@ -1366,7 +1367,7 @@
13661367 double cellSize2;
13671368 double tolerance;
13681369 BoundaryRep bRep;
1369
- int nCells[];
1370
+ int[] nCells;
13701371 cVector minima;
13711372 cVector maxima;
13721373 static Vertex[] triangle = new Vertex[4];