Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Line.hpp

    rf932b7 r6256f5  
    1616class Vector;
    1717class Plane;
     18class LinePoint;
    1819
    1920class Line : public Space
    2021{
     22  friend bool operator==(const Line&,const Line&);
     23  friend class LinePoint;
    2124public:
    2225  Line(const Vector &_origin, const Vector &_direction);
    2326  Line(const Line& _src);
    2427  virtual ~Line();
     28
     29  Line &operator=(const Line& rhs);
    2530
    2631  virtual double distance(const Vector &point) const;
     
    4045  std::vector<Vector> getSphereIntersections() const;
    4146
     47  LinePoint getLinePoint(const Vector&) const;
     48  LinePoint posEndpoint() const;
     49  LinePoint negEndpoint() const;
     50
    4251private:
    4352  std::auto_ptr<Vector> origin;
    4453  std::auto_ptr<Vector> direction;
    4554};
     55
     56bool operator==(const Line&,const Line&);
    4657
    4758/**
     
    5061Line makeLineThrough(const Vector &x1, const Vector &x2);
    5162
     63/**
     64 * Class for representing points on a line
     65 * These objects allow comparison of points on the same line as well as specifying the
     66 * infinite "endpoints" of a line.
     67 */
     68class LinePoint{
     69  friend class Line;
     70  friend bool operator==(const LinePoint&, const LinePoint&);
     71  friend bool operator<(const LinePoint&, const LinePoint&);
     72public:
     73  LinePoint(const LinePoint&);
     74  LinePoint& operator=(const LinePoint&);
     75  Vector getPoint() const;
     76  Line getLine() const;
     77  bool isInfinite() const;
     78  bool isPosInfinity() const;
     79  bool isNegInfinity() const;
     80
     81private:
     82  LinePoint(const Line&,double);
     83  Line line;
     84  double param;
     85};
     86
     87bool operator==(const LinePoint&, const LinePoint&);
     88bool operator<(const LinePoint&, const LinePoint&);
     89
     90inline bool operator!= (const LinePoint& x, const LinePoint& y) { return !(x==y); }
     91inline bool operator>  (const LinePoint& x, const LinePoint& y) { return y<x; }
     92inline bool operator<= (const LinePoint& x, const LinePoint& y) { return !(y<x); }
     93inline bool operator>= (const LinePoint& x, const LinePoint& y) { return !(x<y); }
     94
     95
    5296#endif /* LINE_HPP_ */
Note: See TracChangeset for help on using the changeset viewer.