Skip to content

Commit f0ef3c7

Browse files
committed
Merge branch 'development' of git@github.com:NeuronRobotics/JCSG.git into development
2 parents d430e23 + 64e5cd0 commit f0ef3c7

File tree

1 file changed

+1
-4
lines changed
  • src/main/java/eu/mihosoft/vrl/v3d

1 file changed

+1
-4
lines changed

src/main/java/eu/mihosoft/vrl/v3d/CSG.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1560,6 +1560,7 @@ public CSG triangulate(boolean fix) {
15601560
private void runCPUMakeManifold() {
15611561
long start = System.currentTimeMillis();
15621562
System.err.println("Cleaning up the mesh by adding coincident points to the polygons they touch");
1563+
15631564
int totalAdded = 0;
15641565
double tOL = 1.0e-11;
15651566

@@ -1570,10 +1571,6 @@ private void runCPUMakeManifold() {
15701571
Edge e = null;
15711572
// Test every polygon
15721573
Polygon i = polygons.get(threadIndex);
1573-
// if (threadIndex % 500 == 0 || j == polygons.size() - 1) {
1574-
// // System.err.println("Checking "+j+" of "+polygons.size());
1575-
1576-
// }
15771574
ArrayList<Vertex> vertices = i.vertices;
15781575
for (int k = 0; k < vertices.size(); k++) {
15791576
// each point in the checking polygon

0 commit comments

Comments
 (0)