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>
60 friend std::ostream& operator<< (std::ostream& o,
const LineSegment& l);
73 LineSegment(
double x0,
double y0,
double x1,
double y1);
82 const Coordinate& operator[](std::size_t i)
const;
218 double offsetDistance,
381# include "geos/geom/LineSegment.inl"
The internal representation of a list of coordinates inside a Geometry.
Definition CoordinateSequence.h:59
Coordinate is the lightweight class used to store coordinates.
Definition Coordinate.h:60
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Definition GeometryFactory.h:67
Definition LineSegment.h:57
void closestPoint(const Coordinate &p, Coordinate &ret) const
Computes the closest point on this line segment to another point.
bool isVertical() const
Tests whether the segment is vertical.
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.
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.
std::auto_ptr< LineString > toGeometry(const GeometryFactory &gf) const
bool intersection(const LineSegment &line, Coordinate &coord) const
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
Tests whether the segment is horizontal.
double getLength() const
Computes the length of the line segment.
Coordinate p1
Segment start.
Definition LineSegment.h:64
int orientationIndex(const Coordinate &p) const
Determines the orientation index of a Coordinate relative to this segment.
LineSegment()
Segment end.
bool lineIntersection(const LineSegment &line, Coordinate &ret) const
Computes the intersection point of the lines defined by two segments, if there is one.
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...
CoordinateSequence * closestPoints(const LineSegment &line)
Definition LineString.h:70
Contains the Geometry interface hierarchy and supporting classes.
Definition IndexedNestedRingTester.h:26
GEOS_DLL bool operator==(const Coordinate &a, const Coordinate &b)
Equality operator for Coordinate. 2D only.
GEOS_DLL std::ostream & operator<<(std::ostream &os, const Coordinate &c)
Output function.
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25