We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1399d1 commit 58aa03cCopy full SHA for 58aa03c
include/omath/collision/epa_algorithm.hpp
@@ -213,7 +213,7 @@ namespace omath::collision
213
static bool visible_from(const Face& f, const VectorType& p)
214
{
215
// positive if p is in front of the face
216
- return (f.n.dot(p) - f.d) > 1e-7f;
+ return f.n.dot(p) - f.d > 1e-7f;
217
}
218
219
static void add_edge_boundary(std::pmr::vector<Edge>& boundary, int a, int b)
0 commit comments