Skip to content
Snippets Groups Projects
Commit 0b63e7c4 authored by Daniel Schramm's avatar Daniel Schramm
Browse files

Code commented as it is in master branch

parent daf41b6c
No related branches found
No related tags found
No related merge requests found
...@@ -285,9 +285,9 @@ public class HausdorffDistance extends MeshVisitor { ...@@ -285,9 +285,9 @@ public class HausdorffDistance extends MeshVisitor {
final List<Point3d> nearestPointsList = new ArrayList<>(); final List<Point3d> nearestPointsList = new ArrayList<>();
synchronized (this) { synchronized (this) {
if (distances.containsKey(comparedFacet)) { /*if (distances.containsKey(comparedFacet)) {
return; // skip repeatedly visited facets return; // skip repeatedly visited facets
} }*/
distances.put(comparedFacet, distList); distances.put(comparedFacet, distList);
if (getStrategy() != Strategy.POINT_TO_POINT_DISTANCE_ONLY) { if (getStrategy() != Strategy.POINT_TO_POINT_DISTANCE_ONLY) {
nearestPoints.put(comparedFacet, nearestPointsList); nearestPoints.put(comparedFacet, nearestPointsList);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment