From dadfe6173eaa480889f1a23c88db9a737c8d44cf Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 13 Jan 2015 18:39:43 +1100 Subject: [PATCH] point: add convenience typedef point4f --- point.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/point.hpp b/point.hpp index 59edb55a..952623c9 100644 --- a/point.hpp +++ b/point.hpp @@ -77,6 +77,7 @@ namespace util { // Convenience typedefs typedef point<2,float> point2f; typedef point<3,float> point3f; + typedef point<4,float> point4f; typedef point<2,double> point2d; typedef point<3,double> point3d;