Skip to content
Snippets Groups Projects
Commit 80c81905 authored by Tobias Leemann's avatar Tobias Leemann Committed by Sebastian Eibl
Browse files

[BUGFIX] fixed loop bug in EPA.cpp

parent 4251ffbe
Branches
Tags
No related merge requests found
...@@ -826,7 +826,7 @@ inline bool EPA::searchTetrahedron(GeomPrimitive &geom1, GeomPrimitive &geom2, s ...@@ -826,7 +826,7 @@ inline bool EPA::searchTetrahedron(GeomPrimitive &geom1, GeomPrimitive &geom2, s
} }
} }
while(pointIndexToRemove != 0); while(pointIndexToRemove != -1);
//std::cerr << "Found Tet after " << loopCount << " searches." << std::endl; //std::cerr << "Found Tet after " << loopCount << " searches." << std::endl;
//Build final tetrahedron //Build final tetrahedron
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment