/********************************************************************** * $Id: CoordinateArraySequence.h 1820 2006-09-06 16:54:23Z mloskot $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * Copyright (C) 2006 Refractions Research Inc. * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Public Licence as published * by the Free Software Foundation. * See the COPYING file for more information. * **********************************************************************/ #ifndef GEOS_GEOM_COORDINATEARRAYSEQUENCE_H #define GEOS_GEOM_COORDINATEARRAYSEQUENCE_H #include //#include #include #include // Forward declarations namespace geos { namespace geom { class Coordinate; } } namespace geos { namespace geom { // geos.geom /// The default implementation of CoordinateSequence class CoordinateArraySequence : public CoordinateSequence { public: CoordinateArraySequence(const CoordinateArraySequence &cl); CoordinateSequence *clone() const; //const Coordinate& getCoordinate(int pos) const; const Coordinate& getAt(size_t pos) const; /// Copy Coordinate at position i to Coordinate c virtual void getAt(size_t i, Coordinate& c) const; //int size() const; size_t getSize() const; const std::vector* toVector() const; /// Construct an empty sequence CoordinateArraySequence(); /// Construct sequence taking ownership of given Coordinate vector CoordinateArraySequence(std::vector *coords); /// Construct sequence allocating space for n coordinates CoordinateArraySequence(size_t n); ~CoordinateArraySequence(); bool isEmpty() const; void add(const Coordinate& c); void setAt(const Coordinate& c, size_t pos); void deleteAt(size_t pos); std::string toString() const; void setPoints(const std::vector &v); double getOrdinate(size_t index, size_t ordinateIndex) const; void setOrdinate(size_t index, size_t ordinateIndex, double value); void expandEnvelope(Envelope &env) const; size_t getDimension() const { return 3; } void apply_rw(const CoordinateFilter *filter); void apply_ro(CoordinateFilter *filter) const; virtual CoordinateSequence& removeRepeatedPoints(); private: std::vector *vect; }; /// This is for backward API compatibility typedef CoordinateArraySequence DefaultCoordinateSequence; } // namespace geos.geom } // namespace geos //#ifdef GEOS_INLINE //# include "geos/geom/CoordinateArraySequence.inl" //#endif #endif // ndef GEOS_GEOM_COORDINATEARRAYSEQUENCE_H /********************************************************************** * $Log$ * Revision 1.4 2006/06/12 10:10:39 strk * Fixed getGeometryN() to take size_t rather then int, changed unsigned int parameters to size_t. * * Revision 1.3 2006/05/03 08:58:34 strk * added new non-static CoordinateSequence::removeRepeatedPoints() mutator. * * Revision 1.2 2006/03/24 09:52:41 strk * USE_INLINE => GEOS_INLINE * * Revision 1.1 2006/03/09 16:46:49 strk * geos::geom namespace definition, first pass at headers split * **********************************************************************/