]> git.jsancho.org Git - c-irrlicht.git/blobdiff - include/vector3d.h
Rename functions and fix some little bugs
[c-irrlicht.git] / include / vector3d.h
index 6019d94c753d9239594c5d2c721a8c6b4275f6b2..fd9402669f7210f323a5c38cd9a7d56d214dc153 100644 (file)
    <http://www.gnu.org/licenses/>.
 */
 
-#ifndef __C_IRR_POINT_3D_H_INCLUDED__
-#define __C_IRR_POINT_3D_H_INCLUDED__
+#ifndef __C_IRR_VECTOR_3D_H_INCLUDED__
+#define __C_IRR_VECTOR_3D_H_INCLUDED__
 
 typedef struct
 {
-  float_t x;
-  float_t y;
-  float_t z;
+  float x;
+  float y;
+  float z;
 } irr_core_vector3df;
 
 #endif