Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8323 in orxonox.OLD for branches/bsp_model/src/lib/math/vector.h


Ignore:
Timestamp:
Jun 12, 2006, 12:10:51 AM (18 years ago)
Author:
patrick
Message:

bsp_model: new collision reaction for the ground. not yet working completle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/bsp_model/src/lib/math/vector.h

    r8145 r8323  
    4646  /** @param v: the Vecor to compare with this one @returns true, if the Vecors are the same, false otherwise */
    4747  inline bool operator== (const Vector& v) const { return (this->x==v.x&&this->y==v.y&&this->z==v.z)?true:false; };
     48  /** @param v: the Vecor to compare with this one @returns true, if the Vecors are different, false otherwise */
     49  inline bool operator!= (const Vector& v) const { return (this->x!=v.x&&this->y!=v.y&&this->z!=v.z)?true:false; };
    4850  /** @param index The index of the "array" @returns the x/y/z coordinate */
    4951  inline float operator[] (float index) const {if( index == 0) return this->x; if( index == 1) return this->y; if( index == 2) return this->z; }
Note: See TracChangeset for help on using the changeset viewer.