|
|
template<typename T = Coordinate> |
| const T & | geos::geom::CoordinateSequence::getAt (std::size_t i) const |
| | Returns a read-only reference to Coordinate at position i.
|
| |
|
template<typename T = Coordinate> |
| T & | geos::geom::CoordinateSequence::getAt (std::size_t i) |
| | Returns a reference to Coordinate at position i.
|
| |
|
template<typename T > |
| void | geos::geom::CoordinateSequence::getAt (std::size_t i, T &c) const |
| | Write Coordinate at position i to given Coordinate.
|
| |
|
void | geos::geom::CoordinateSequence::getAt (std::size_t i, CoordinateXY &c) const |
| |
| const Coordinate & | geos::geom::CoordinateSequence::operator[] (std::size_t i) const |
| |
| Coordinate & | geos::geom::CoordinateSequence::operator[] (std::size_t i) |
| |
| double | geos::geom::CoordinateSequence::getOrdinate (std::size_t index, std::size_t ordinateIndex) const |
| |
| double | geos::geom::CoordinateSequence::getX (std::size_t index) const |
| |
| double | geos::geom::CoordinateSequence::getY (std::size_t index) const |
| |
|
template<typename T = Coordinate> |
| const T & | geos::geom::CoordinateSequence::back () const |
| | Return last Coordinate in the sequence.
|
| |
|
template<typename T = Coordinate> |
| T & | geos::geom::CoordinateSequence::back () |
| | Return last Coordinate in the sequence.
|
| |
|
template<typename T = Coordinate> |
| const T & | geos::geom::CoordinateSequence::front () const |
| | Return first Coordinate in the sequence.
|
| |
|
template<typename T = Coordinate> |
| T & | geos::geom::CoordinateSequence::front () |
| | Return first Coordinate in the sequence.
|
| |
|
void | geos::geom::CoordinateSequence::toVector (std::vector< Coordinate > &coords) const |
| | Pushes all Coordinates of this sequence into the provided vector.
|
| |
|
void | geos::geom::CoordinateSequence::toVector (std::vector< CoordinateXY > &coords) const |
| |