10 #include "../BasicDatatypes.hpp" 56 Line2D(
float x1,
float y1,
float x2,
float y2)
62 Line2D(
const std::pair<Point2D, Point2D>& p)
187 Point2D* intersectingPoint = NULL)
const;
IntersectingType
Describes how two lines can be intersecting.
double inclination() const
Point2D getDiff() const
Returns the difference between line end and line start as a Point2D.
Line2D()
Empty constructor.
Polygon2D toPolygon2D() const
Conversion to Polygon2D.
Point2D projectOntoLine(const Point2D &point) const
void setP1(const Point2D &p1)
Sets the first point.
Point2D second
The second point of this line.
Line2D(const Point2D &a, const Point2D &b)
Constructor with two points.
double distanceToPoint(const Point2D &point) const
Returns the distance of the given point to its orthogonal projection onto this line.
Point2D second_type
Typedef for STL std::pair compatibility.
Point2D first_type
Typedef for STL std::pair compatibility.
Line2D getUnitVector() const
Returns a unit vector for this line.
const Point2D & getP1() const
Returns the first point.
The lines are not intersecting, i.e. they are parallel or zero.
bool isZero() const
Returns true if both points are zero.
double getInclination() const
A line in the two-dimensional plane, composed out of two points.
Point2D value_type
Typedef for STL compatibility.
Point2D first
The first point of this line.
static Line2D fromLinearRegression(const Polygon2D &points)
Returns a Line2D from several points using linear regression.
Point2D getCenterPoint() const
Returns the point in the middle between first and second point.
IntersectingType isIntersecting(const Line2D &other, Point2D *intersectingPoint=NULL) const
Calculates the intersection point between two lines.
bool containsPoint(const Point2D &point) const
Returns true if this line "contains" the given point.
The lines are intersecting, but outside of their line segments.
const Point2D & getP2() const
Returns the second point.
Line2D(const std::pair< Point2D, Point2D > &p)
Constructor from a std::pair.
Line2D(float x1, float y1, float x2, float y2)
Constructor with x/y coordinates of the two points given explicitly.
The lines are intersecting within their line segments.
void setP2(const Point2D &p2)
Sets the second point.
double distanceFromLineSegment(const Point2D &point) const
Returns the distance of a point to this line segment.
std::ostream & operator<<(std::ostream &os, const EvalCaseResult &result)
virtual const UINT32 getUsedMemory() const