From 58aa03c4a97267efd8020d56f919587a6b743cce Mon Sep 17 00:00:00 2001 From: Orange Date: Thu, 4 Dec 2025 05:02:54 +0300 Subject: [PATCH] patch --- include/omath/collision/epa_algorithm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/omath/collision/epa_algorithm.hpp b/include/omath/collision/epa_algorithm.hpp index 5fbe05f..2197901 100644 --- a/include/omath/collision/epa_algorithm.hpp +++ b/include/omath/collision/epa_algorithm.hpp @@ -213,7 +213,7 @@ namespace omath::collision static bool visible_from(const Face& f, const VectorType& p) { // positive if p is in front of the face - return (f.n.dot(p) - f.d) > 1e-7f; + return f.n.dot(p) - f.d > 1e-7f; } static void add_edge_boundary(std::pmr::vector& boundary, int a, int b)