Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Plane.hpp

    r986ed3 r82cf79  
    2121class Plane : public Space
    2222{
     23  friend bool operator==(const Plane&,const Plane&);
    2324  typedef std::auto_ptr<Vector> vec_ptr;
    2425public:
     
    2930  Plane(const Plane& plane);
    3031  virtual ~Plane();
     32
     33  Plane &operator=(const Plane&);
    3134
    3235  // Accessor Functions
     
    6366  Line getOrthogonalLine(const Vector &origin) const;
    6467
     68  /**
     69   * Test if two points are on the same side of the plane
     70   */
     71  bool onSameSide(const Vector&,const Vector&) const;
     72
    6573  /****** Methods inherited from Space ***********/
    6674
     
    7381};
    7482
     83bool operator==(const Plane&,const Plane&);
     84
    7585std::ostream &operator<< (std::ostream &ost,const Plane& p);
    7686
Note: See TracChangeset for help on using the changeset viewer.