Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9417 in orxonox.OLD for branches/terrain/src/lib/math/plane.h


Ignore:
Timestamp:
Jul 24, 2006, 1:23:47 PM (18 years ago)
Author:
bensch
Message:

Cleanup after merge

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/terrain/src/lib/math/plane.h

    r9110 r9417  
    4747  Plane () : n(Vector(1,1,1)), k(0) {}
    4848  ~Plane () {}
    49 
     49  inline const Plane& operator= ( const Plane& _p )
     50  {
     51    this->n = _p.n;
     52    this->k = _p.k;
     53    return *this;
     54  }
    5055  Vector intersectLine (const Line& l) const;
    5156  float distancePoint (const Vector& p) const;
Note: See TracChangeset for help on using the changeset viewer.