Skip to content

Commit

Permalink
Merge branch 'development' of [email protected]:NeuronRobotics/JCSG.git …
Browse files Browse the repository at this point in the history
…into development
  • Loading branch information
Kevin Harrington committed Dec 7, 2024
2 parents d430e23 + 64e5cd0 commit f0ef3c7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/java/eu/mihosoft/vrl/v3d/CSG.java
Original file line number Diff line number Diff line change
Expand Up @@ -1560,6 +1560,7 @@ public CSG triangulate(boolean fix) {
private void runCPUMakeManifold() {
long start = System.currentTimeMillis();
System.err.println("Cleaning up the mesh by adding coincident points to the polygons they touch");

int totalAdded = 0;
double tOL = 1.0e-11;

Expand All @@ -1570,10 +1571,6 @@ private void runCPUMakeManifold() {
Edge e = null;
// Test every polygon
Polygon i = polygons.get(threadIndex);
// if (threadIndex % 500 == 0 || j == polygons.size() - 1) {
// // System.err.println("Checking "+j+" of "+polygons.size());

// }
ArrayList<Vertex> vertices = i.vertices;
for (int k = 0; k < vertices.size(); k++) {
// each point in the checking polygon
Expand Down

0 comments on commit f0ef3c7

Please sign in to comment.