21 #ifndef GEOS_GEOM_LINESEGMENT_H
22 #define GEOS_GEOM_LINESEGMENT_H
24 #include <geos/export.h>
25 #include <geos/geom/Coordinate.h>
27 #include <geos/inline.h>
37 class CoordinateSequence;
38 class GeometryFactory;
73 LineSegment(
double x0,
double y0,
double x1,
double y1);
80 const Coordinate& operator[](std::size_t i)
const;
124 int orientationIndex(
const LineSegment* seg)
const;
216 double offsetDistance,
322 std::array<Coordinate, 2> closestPoints(
const LineSegment* line);
366 size_t h = std::hash<double>{}(s.p0.
x);
367 h ^= (std::hash<double>{}(s.p0.
y) << 1);
368 h ^= (std::hash<double>{}(s.
p1.
x) << 1);
369 return h ^ (std::hash<double>{}(s.
p1.
y) << 1);
374 std::ostream&
operator<< (std::ostream& o,
const LineSegment& l);
384 # include "geos/geom/LineSegment.inl"
Coordinate is the lightweight class used to store coordinates.
Definition: Coordinate.h:60
double y
y-coordinate
Definition: Coordinate.h:83
double x
x-coordinate
Definition: Coordinate.h:80
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Definition: GeometryFactory.h:68
Definition: LineSegment.h:59
void closestPoint(const Coordinate &p, Coordinate &ret) const
Computes the closest point on this line segment to another point.
LineSegment(const Coordinate &c0, const Coordinate &c1)
Constructs a LineSegment with the given start and end Coordinates.
double distancePerpendicular(const Coordinate &p) const
Computes the perpendicular distance between the (infinite) line defined by this line segment and a po...
void midPoint(Coordinate &ret) const
Computes the midpoint of the segment.
int compareTo(const LineSegment &other) const
Compares this object with the specified object for order.
void pointAlongOffset(double segmentLengthFraction, double offsetDistance, Coordinate &ret) const
Computes the Coordinate that lies a given fraction along the line defined by this segment and offset ...
bool project(const LineSegment &seg, LineSegment &ret) const
Project a line segment onto this line segment and return the resulting line segment.
std::unique_ptr< LineString > toGeometry(const GeometryFactory &gf) const
double projectionFactor(const Coordinate &p) const
Compute the projection factor for the projection of the point p onto this LineSegment.
void pointAlong(double segmentLengthFraction, Coordinate &ret) const
Computes the Coordinate that lies a given fraction along the line defined by this segment.
void project(const Coordinate &p, Coordinate &ret) const
Compute the projection of a point onto the line determined by this line segment.
bool equalsTopo(const LineSegment &other) const
Returns true if other is topologically equal to this LineSegment (e.g. irrespective of orientation).
void reverse()
Reverses the direction of the line segment.
double distance(const Coordinate &p) const
Computes the distance between this line segment and a point.
double distance(const LineSegment &ls) const
Computes the distance between this line segment and another one.
int orientationIndex(const LineSegment &seg) const
void normalize()
Puts the line segment into a normalized form.
bool isHorizontal() const
double getLength() const
Computes the length of the line segment.
Coordinate p1
Segment start.
Definition: LineSegment.h:66
Coordinate lineIntersection(const LineSegment &line) const
Computes the intersection point of the lines defined by two segments, if there is one.
int orientationIndex(const Coordinate &p) const
Determines the orientation index of a Coordinate relative to this segment.
LineSegment()
Segment end.
Coordinate intersection(const LineSegment &line) const
std::array< Coordinate, 2 > closestPoints(const LineSegment &line)
double segmentFraction(const Coordinate &inputPt) const
Computes the fraction of distance (in [0.0, 1.0]) that the projection of a point occurs along this li...
std::ostream & operator<<(std::ostream &os, const Coordinate &c)
Output function.
bool operator==(const Coordinate &a, const Coordinate &b)
Equality operator for Coordinate. 2D only.
Basic namespace for all GEOS functionalities.
Definition: IndexedNestedRingTester.h:26