From 31b59df97a0bb70ec1c1384dbfc2e3bfc9033525 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 6 Oct 2015 15:19:06 +1100 Subject: [PATCH] point: add constant sized convenience typedefs --- point.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/point.hpp b/point.hpp index 5f437fa4..c6e6e165 100644 --- a/point.hpp +++ b/point.hpp @@ -69,6 +69,9 @@ namespace util { template using point3 = point<3,T>; template using point4 = point<4,T>; + template using pointi = point; + template using pointf = point; + typedef point1 point1f; typedef point2 point2f; typedef point3 point3f;