GEOS 3.11.1
|
An interface for classes which represent a sequence of contiguous line segments. More...
#include <SegmentString.h>
Public Types | |
typedef std::vector< const SegmentString * > | ConstVect |
typedef std::vector< SegmentString * > | NonConstVect |
Public Member Functions | |
SegmentString (const void *newContext) | |
Construct a SegmentString. More... | |
const void * | getData () const |
Gets the user-defined data for this segment string. More... | |
void | setData (const void *data) |
Sets the user-defined data for this segment string. More... | |
virtual std::size_t | size () const =0 |
virtual const geom::Coordinate & | getCoordinate (std::size_t i) const =0 |
virtual geom::CoordinateSequence * | getCoordinates () const =0 |
Return a pointer to the CoordinateSequence associated with this SegmentString. More... | |
virtual bool | isClosed () const =0 |
virtual std::ostream & | print (std::ostream &os) const |
Friends | |
std::ostream & | operator<< (std::ostream &os, const SegmentString &ss) |
An interface for classes which represent a sequence of contiguous line segments.
SegmentStrings can carry a context object, which is useful for preserving topological or parentage information.
|
inline |
Construct a SegmentString.
newContext | the context associated to this SegmentString |
|
pure virtual |
Return a pointer to the CoordinateSequence associated with this SegmentString.
Implemented in geos::noding::BasicSegmentString, and geos::noding::NodedSegmentString.
|
inline |
Gets the user-defined data for this segment string.
|
inline |
Sets the user-defined data for this segment string.
data | an Object containing user-defined data |