Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5688 in orxonox.OLD for trunk/src/lib/math/vector.h


Ignore:
Timestamp:
Nov 21, 2005, 11:27:39 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: the const collision detection war - strike

File:
1 edited

Legend:

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

    r5672 r5688  
    276276  float k;    //!< Offset constant
    277277
    278   Plane (Vector a, Vector b, Vector c);
    279   Plane (Vector norm, Vector p);
    280   Plane (Vector norm, sVec3D p);
    281   Plane (Vector n, float k) : n(n), k(k) {} //!< assignment constructor
     278  Plane (const Vector& a, const Vector& b, const Vector& c);
     279  Plane (const Vector& norm, const Vector& p);
     280  Plane (const Vector& norm, const sVec3D& p);
     281  Plane (const Vector& n, float k) : n(n), k(k) {} //!< assignment constructor
    282282  Plane () : n(Vector(1,1,1)), k(0) {}
    283283  ~Plane () {}
Note: See TracChangeset for help on using the changeset viewer.