Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Plane.hpp

    r82cf79 r986ed3  
    2121class Plane : public Space
    2222{
    23   friend bool operator==(const Plane&,const Plane&);
    2423  typedef std::auto_ptr<Vector> vec_ptr;
    2524public:
     
    3029  Plane(const Plane& plane);
    3130  virtual ~Plane();
    32 
    33   Plane &operator=(const Plane&);
    3431
    3532  // Accessor Functions
     
    6663  Line getOrthogonalLine(const Vector &origin) const;
    6764
    68   /**
    69    * Test if two points are on the same side of the plane
    70    */
    71   bool onSameSide(const Vector&,const Vector&) const;
    72 
    7365  /****** Methods inherited from Space ***********/
    7466
     
    8173};
    8274
    83 bool operator==(const Plane&,const Plane&);
    84 
    8575std::ostream &operator<< (std::ostream &ost,const Plane& p);
    8676
Note: See TracChangeset for help on using the changeset viewer.