diff --git a/src/DimensionTraits.h b/src/DimensionTraits.h index e2b49e430..71785aa3e 100644 --- a/src/DimensionTraits.h +++ b/src/DimensionTraits.h @@ -35,14 +35,6 @@ template struct DimensionTraits { */ typedef U VectorType; - /** - * @brief Point type - * - * Floating-point Math::Point2D or Math::Point3D for 2D or 3D. No point - * type defined for one dimension and integral types. - */ - typedef U PointType; - /** * @brief Matrix type * @@ -73,14 +65,12 @@ template<> struct DimensionTraits<2, float> { DimensionTraits() = delete; typedef Math::Vector2 VectorType; - typedef Math::Point2D PointType; typedef Math::Matrix3 MatrixType; }; template<> struct DimensionTraits<2, double> { DimensionTraits() = delete; typedef Math::Vector2 VectorType; - typedef Math::Point2D PointType; typedef Math::Matrix3 MatrixType; }; @@ -96,14 +86,12 @@ template<> struct DimensionTraits<3, float> { DimensionTraits() = delete; typedef Math::Vector3 VectorType; - typedef Math::Point3D PointType; typedef Math::Matrix4 MatrixType; }; template<> struct DimensionTraits<3, double> { DimensionTraits() = delete; typedef Math::Vector3 VectorType; - typedef Math::Point3D PointType; typedef Math::Matrix4 MatrixType; }; #endif