/********************************************************************** * * GEOS - Geometry Engine Open Source * http://geos.osgeo.org * * Copyright (C) 2011 Sandro Santilli * Copyright (C) 2001-2002 Vivid Solutions Inc. * Copyright (C) 2005 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. * ********************************************************************** * * Last port: geom/Point.java r320 (JTS-1.12) * **********************************************************************/ #ifndef GEOS_GEOS_POINT_H #define GEOS_GEOS_POINT_H #include #include #include // for inheritance #include // for inheritance #include // for proper use of auto_ptr<> #include // for proper use of auto_ptr<> #include // for Dimension::DimensionType #include #include #include #include // for auto_ptr #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class #endif // Forward declarations namespace geos { namespace geom { // geos::geom class Coordinate; class CoordinateArraySequence; class CoordinateFilter; class CoordinateSequenceFilter; class GeometryComponentFilter; class GeometryFilter; } } namespace geos { namespace geom { // geos::geom /** * Implementation of Point. * * A Point is valid iff: * * - the coordinate which defines it is a valid coordinate * (i.e does not have an NaN X or Y ordinate) * */ class GEOS_DLL Point : public virtual Geometry, public Puntal { public: friend class GeometryFactory; /// A vector of const Point pointers typedef std::vector ConstVect; virtual ~Point(); /** * Creates and returns a full copy of this {@link Point} object. * (including all coordinates contained by it). * * @return a clone of this instance */ Geometry *clone() const { return new Point(*this); } CoordinateSequence* getCoordinates(void) const; const CoordinateSequence* getCoordinatesRO() const; size_t getNumPoints() const; bool isEmpty() const; bool isSimple() const; /// Returns point dimension (0) Dimension::DimensionType getDimension() const; /// Returns coordinate dimension. virtual int getCoordinateDimension() const; /// Returns Dimension::False (Point has no boundary) int getBoundaryDimension() const; /** * Gets the boundary of this geometry. * Zero-dimensional geometries have no boundary by definition, * so an empty GeometryCollection is returned. * * @return an empty GeometryCollection * @see Geometry::getBoundary */ Geometry* getBoundary() const; double getX() const; double getY() const; const Coordinate* getCoordinate() const; std::string getGeometryType() const; virtual GeometryTypeId getGeometryTypeId() const; void apply_ro(CoordinateFilter *filter) const; void apply_rw(const CoordinateFilter *filter); void apply_ro(GeometryFilter *filter) const; void apply_rw(GeometryFilter *filter); void apply_rw(GeometryComponentFilter *filter); void apply_ro(GeometryComponentFilter *filter) const; void apply_rw(CoordinateSequenceFilter& filter); void apply_ro(CoordinateSequenceFilter& filter) const; bool equalsExact(const Geometry *other, double tolerance=0) const; void normalize(void) { // a Point is always in normalized form } Geometry* reverse() const { return clone(); } protected: /** * \brief * Creates a Point taking ownership of the given CoordinateSequence * (must have 1 element) * * @param newCoords * contains the single coordinate on which to base this * Point or null to create * the empty geometry. * * @param newFactory the GeometryFactory used to create this geometry */ Point(CoordinateSequence *newCoords, const GeometryFactory *newFactory); Point(const Point &p); Envelope::AutoPtr computeEnvelopeInternal() const; int compareToSameClass(const Geometry *p) const; private: /** * The Coordinate wrapped by this Point. */ std::auto_ptr coordinates; }; } // namespace geos::geom } // namespace geos //#ifdef GEOS_INLINE //# include "geos/geom/Point.inl" //#endif #ifdef _MSC_VER #pragma warning(pop) #endif #endif // ndef GEOS_GEOS_POINT_H