]> git.mxchange.org Git - simgear.git/commitdiff
math: Add integer valued vector types.
authorMathias Froehlich <Mathias.Froehlich@web.de>
Sun, 2 Dec 2012 13:50:04 +0000 (14:50 +0100)
committerMathias Froehlich <Mathias.Froehlich@web.de>
Sun, 2 Dec 2012 16:30:08 +0000 (17:30 +0100)
simgear/math/SGMathFwd.hxx

index 3570aa40d6b1363ec93c90be580216f486e20182..96b8a191b28ba2435ecede56e724f0dbd01afad3 100644 (file)
@@ -52,9 +52,12 @@ typedef SGQuat<float> SGQuatf;
 typedef SGQuat<double> SGQuatd;
 typedef SGVec2<float> SGVec2f;
 typedef SGVec2<double> SGVec2d;
+typedef SGVec2<int> SGVec2i;
 typedef SGVec3<float> SGVec3f;
 typedef SGVec3<double> SGVec3d;
+typedef SGVec3<int> SGVec3i;
 typedef SGVec4<float> SGVec4f;
 typedef SGVec4<double> SGVec4d;
+typedef SGVec4<int> SGVec4i;
 
 #endif