From eafefb40ec634a120f53754ee57c6c36e0067cd6 Mon Sep 17 00:00:00 2001 From: Orange Date: Thu, 4 Dec 2025 04:45:15 +0300 Subject: [PATCH] fixed typo --- 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 3254ef1..1875176 100644 --- a/include/omath/collision/epa_algorithm.hpp +++ b/include/omath/collision/epa_algorithm.hpp @@ -86,7 +86,7 @@ namespace omath::collision const int fidx = heap.top().idx; const Face f = faces[fidx]; - // Get farthest point in face normal direction + // Get the furthest point in face normal direction const VectorType p = support_point(a, b, f.n); const float p_dist = f.n.dot(p);