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