From 865c9d5eedcc9133ea2d979eb70b602a412601e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 22 Feb 2013 01:20:14 +0100 Subject: [PATCH] Removed DimensionTraits::PointType. Not needed anymore. --- src/DimensionTraits.h | 12 ------------ 1 file changed, 12 deletions(-) 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