Changes in src/Plane.hpp [986ed3:82cf79]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Plane.hpp
r986ed3 r82cf79 21 21 class Plane : public Space 22 22 { 23 friend bool operator==(const Plane&,const Plane&); 23 24 typedef std::auto_ptr<Vector> vec_ptr; 24 25 public: … … 29 30 Plane(const Plane& plane); 30 31 virtual ~Plane(); 32 33 Plane &operator=(const Plane&); 31 34 32 35 // Accessor Functions … … 63 66 Line getOrthogonalLine(const Vector &origin) const; 64 67 68 /** 69 * Test if two points are on the same side of the plane 70 */ 71 bool onSameSide(const Vector&,const Vector&) const; 72 65 73 /****** Methods inherited from Space ***********/ 66 74 … … 73 81 }; 74 82 83 bool operator==(const Plane&,const Plane&); 84 75 85 std::ostream &operator<< (std::ostream &ost,const Plane& p); 76 86
Note:
See TracChangeset
for help on using the changeset viewer.