Represents a list of contiguous line segments, and supports noding the segments.
More...
|
| | BasicSegmentString (const std::shared_ptr< const geom::CoordinateSequence > &newPts, const void *newContext) |
| | Construct a BasicSegmentString.
|
| |
| std::ostream & | print (std::ostream &os) const override |
| |
| int | getSegmentOctant (std::size_t index) const |
| | Gets the octant of the segment starting at vertex index.
|
| |
| | SegmentString (const void *newContext, const std::shared_ptr< const geom::CoordinateSequence > &newSeq) |
| | Construct a SegmentString.
|
| |
| const void * | getData () const |
| | Gets the user-defined data for this segment string.
|
| |
| void | setData (const void *data) |
| | Sets the user-defined data for this segment string.
|
| |
|
std::size_t | size () const |
| |
|
template<typename CoordType = geom::Coordinate> |
| const CoordType & | getCoordinate (std::size_t i) const |
| |
|
const std::shared_ptr< const geom::CoordinateSequence > & | getCoordinates () const |
| | Return a pointer to the CoordinateSequence associated with this SegmentString.
|
| |
|
void | setCoordinates (const std::shared_ptr< const geom::CoordinateSequence > &newSeq) |
| |
| int | getSegmentOctant (std::size_t index) const |
| | Gets the octant of the segment starting at vertex index.
|
| |
| const geom::CoordinateXY & | nextInRing (std::size_t index) const |
| |
| const geom::CoordinateXY & | prevInRing (std::size_t index) const |
| |
|
bool | isClosed () const |
| |
Represents a list of contiguous line segments, and supports noding the segments.
The line segments are represented by an array of Coordinates. Intended to optimize the noding of contiguous segments by reducing the number of allocated objects. SegmentStrings can carry a context object, which is useful for preserving topological or parentage information. All noded substrings are initialized with the same context object.