]> git.jsancho.org Git - c-irrlicht.git/blobdiff - include/vector3d.h
C types
[c-irrlicht.git] / include / vector3d.h
index fd9402669f7210f323a5c38cd9a7d56d214dc153..a03a82519faf466bc25863917ff1980010445180 100644 (file)
 #ifndef __C_IRR_VECTOR_3D_H_INCLUDED__
 #define __C_IRR_VECTOR_3D_H_INCLUDED__
 
+#include <math.h>
+
 typedef struct
 {
-  float x;
-  float y;
-  float z;
+  float_t x;
+  float_t y;
+  float_t z;
 } irr_core_vector3df;
 
 #endif