Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5672 in orxonox.OLD for trunk/src/lib/math


Ignore:
Timestamp:
Nov 21, 2005, 3:59:28 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: removed the modelinfo from the includes of vector.h

Location:
trunk/src/lib/math
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/math/vector.cc

    r5662 r5672  
    2323#include "vector.h"
    2424#ifdef DEBUG
    25 #include "debug.h"
     25  #include "debug.h"
    2626#else
    27 #define PRINT(x) printf
     27  #include <stdio.h>
     28  #define PRINT(x) printf
    2829#endif
    2930
  • trunk/src/lib/math/vector.h

    r5435 r5672  
    2626#include <math.h>
    2727#include "compiler.h"
    28 #include "abstract_model.h"
    2928//! PI the circle-constant
    3029#define PI 3.14159265359f
     30
     31
     32//! this is a small and performant 3D vector
     33typedef float sVec3D[3];
     34
     35
     36//! small and performant 2D vector
     37typedef float sVec2D[2];
     38
     39
    3140
    3241//! 3D Vector
Note: See TracChangeset for help on using the changeset viewer.