GEOS 3.6.2
LineSegment.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2009 2011 Sandro Santilli <strk@keybit.net>
7 * Copyright (C) 2005-2006 Refractions Research Inc.
8 * Copyright (C) 2001-2002 Vivid Solutions Inc.
9 *
10 * This is free software; you can redistribute and/or modify it under
11 * the terms of the GNU Lesser General Public Licence as published
12 * by the Free Software Foundation.
13 * See the COPYING file for more information.
14 *
15 **********************************************************************
16 *
17 * Last port: geom/LineSegment.java r18 (JTS-1.11)
18 *
19 **********************************************************************/
20
21#ifndef GEOS_GEOM_LINESEGMENT_H
22#define GEOS_GEOM_LINESEGMENT_H
23
24#include <geos/export.h>
25#include <geos/geom/Coordinate.h> // for composition
26
27#include <geos/inline.h>
28
29#include <iostream> // for ostream
30#include <memory> // for auto_ptr
31
32// Forward declarations
33namespace geos {
34 namespace geom {
36 class GeometryFactory;
37 class LineString;
38 }
39}
40
41namespace geos {
42namespace geom { // geos::geom
43
57class GEOS_DLL LineSegment {
58public:
59
60 friend std::ostream& operator<< (std::ostream& o, const LineSegment& l);
61
62 Coordinate p0;
63
65
67
68 LineSegment(const LineSegment &ls);
69
71 LineSegment(const Coordinate& c0, const Coordinate& c1);
72
73 LineSegment(double x0, double y0, double x1, double y1);
74
75 virtual ~LineSegment();
76
77 void setCoordinates(const Coordinate& c0, const Coordinate& c1);
78
79 // obsoleted, use operator[] instead
80 //const Coordinate& getCoordinate(std::size_t i) const;
81
82 const Coordinate& operator[](std::size_t i) const;
83 Coordinate& operator[](std::size_t i);
84
85 void setCoordinates(const LineSegment& ls);
86
88 double getLength() const;
89
91 //
94 bool isHorizontal() const;
95
97 //
100 bool isVertical() const;
101
123 int orientationIndex(const LineSegment& seg) const;
124
125 // TODO: deprecate this
126 int orientationIndex(const LineSegment* seg) const;
127
144 int orientationIndex(const Coordinate& p) const;
145
147 void reverse();
148
150 //
154 void normalize();
155
157 double angle() const;
158
160 //
163 void midPoint(Coordinate& ret) const;
164
166 double distance(const LineSegment& ls) const;
167
169 double distance(const Coordinate& p) const;
170
175 double distancePerpendicular(const Coordinate& p) const;
176
191 void pointAlong(double segmentLengthFraction, Coordinate& ret) const;
192
217 void pointAlongOffset(double segmentLengthFraction,
218 double offsetDistance,
219 Coordinate& ret) const;
220
238 double projectionFactor(const Coordinate& p) const;
239
255 double segmentFraction(const Coordinate& inputPt) const;
256
265 void project(const Coordinate& p, Coordinate& ret) const;
266
282 bool project(const LineSegment& seg, LineSegment& ret) const;
283
285 //
290 void closestPoint(const Coordinate& p, Coordinate& ret) const;
291
303 int compareTo(const LineSegment& other) const;
304
314 bool equalsTopo(const LineSegment& other) const;
315
324
326
340 bool intersection(const LineSegment& line, Coordinate& coord) const;
341
359 bool lineIntersection(const LineSegment& line, Coordinate& ret) const;
360
367 std::auto_ptr<LineString> toGeometry(const GeometryFactory& gf) const;
368
369};
370
371std::ostream& operator<< (std::ostream& o, const LineSegment& l);
372
374bool operator==(const LineSegment& a, const LineSegment& b);
375
376
377} // namespace geos::geom
378} // namespace geos
379
380#ifdef GEOS_INLINE
381# include "geos/geom/LineSegment.inl"
382#endif
383
384#endif // ndef GEOS_GEOM_LINESEGMENT_H
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.
double angle() const
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