Skip to content

Commit

Permalink
remove sysout. (triangulation)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaillandier committed Mar 6, 2024
1 parent 8ccdad5 commit 5cabab4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions gama.core/src/gama/core/common/geometry/GeometryUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -758,11 +758,9 @@ public static IList<IShape> triangulation(final IScope scope, final Geometry geo
dtb.setTolerance(toleranceTriangulation + 0.1);
dtb.setSites(geom);
dtb.setConstraints(geom);
System.out.println("BUG DONC TOL 0.1");
tri = (GeometryCollection) dtb.getTriangles(GEOMETRY_FACTORY);
}
if (tri != null) {
System.out.println("tri: " + tri.getLength());
geoms.addAll(filterGeoms(tri, geom, toClip, toleranceClip, approxClipping)); }

}
Expand Down

0 comments on commit 5cabab4

Please sign in to comment.