vector: fix vector4f to actually use 4 components

This commit is contained in:
Danny Robson 2015-01-05 18:08:34 +11:00
parent 7007b76db6
commit 2704002dbd

View File

@ -102,7 +102,7 @@ namespace util {
// convenience typedefs
typedef vector<2,float> vector2f;
typedef vector<3,float> vector3f;
typedef vector<3,float> vector4f;
typedef vector<4,float> vector4f;
typedef vector<2,double> vector2d;
typedef vector<3,double> vector3d;