Changeset 9417 in orxonox.OLD for branches/terrain/src/lib/math
- Timestamp:
- Jul 24, 2006, 1:23:47 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/terrain/src/lib/math/plane.h
r9110 r9417 47 47 Plane () : n(Vector(1,1,1)), k(0) {} 48 48 ~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 } 50 55 Vector intersectLine (const Line& l) const; 51 56 float distancePoint (const Vector& p) const;
Note: See TracChangeset
for help on using the changeset viewer.