From d23bc3204d3bd2e98b0abcd83cb4d88739015c4e Mon Sep 17 00:00:00 2001 From: Orange Date: Sat, 6 Dec 2025 14:30:44 +0300 Subject: [PATCH] update --- include/omath/collision/mesh_collider.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/omath/collision/mesh_collider.hpp b/include/omath/collision/mesh_collider.hpp index 53f15d9..a9a8870 100644 --- a/include/omath/collision/mesh_collider.hpp +++ b/include/omath/collision/mesh_collider.hpp @@ -14,14 +14,14 @@ class UnitTestColider_FindFurthestVertex_Test; namespace omath::collision { template - class MeshCollider final : public ColliderInterface> + class MeshCollider final : public ColliderInterface { #ifdef OMATH_BUILD_TESTS friend UnitTestColider_FindFurthestVertex_Test; #endif public: using VertexType = MeshType::VertexType; - using VectorType = VertexType::VectorType; + using VectorType = MeshType::VertexType::VectorType; explicit MeshCollider(MeshType mesh): m_mesh(std::move(mesh)) { }