Skip to content

Commit 58aa03c

Browse files
committed
patch
1 parent e1399d1 commit 58aa03c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/omath/collision/epa_algorithm.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ namespace omath::collision
213213
static bool visible_from(const Face& f, const VectorType& p)
214214
{
215215
// positive if p is in front of the face
216-
return (f.n.dot(p) - f.d) > 1e-7f;
216+
return f.n.dot(p) - f.d > 1e-7f;
217217
}
218218

219219
static void add_edge_boundary(std::pmr::vector<Edge>& boundary, int a, int b)

0 commit comments

Comments
 (0)