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)) { }