/********************************************************************** * * GEOS - Geometry Engine Open Source * http://geos.osgeo.org * * Copyright (C) 2011 Sandro Santilli * Copyright (C) 2005 2006 Refractions Research Inc. * Copyright (C) 2001-2002 Vivid Solutions 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/Polygon.java r320 (JTS-1.12) * **********************************************************************/ #ifndef GEOS_GEOM_POLYGON_H #define GEOS_GEOM_POLYGON_H #include #include #include #include #include // for inheritance #include // for inheritance #include // for proper use of auto_ptr<> #include // for Dimension::DimensionType #include #include // for auto_ptr // Forward declarations namespace geos { namespace geom { // geos::geom class Coordinate; class CoordinateArraySequence; class CoordinateSequenceFilter; class LinearRing; class LineString; } } namespace geos { namespace geom { // geos::geom /** * \class Polygon geom.h geos.h * * \brief Represents a linear polygon, which may include holes. * * The shell and holes of the polygon are represented by {@link LinearRing}s. * In a valid polygon, holes may touch the shell or other holes at a single point. * However, no sequence of touching holes may split the polygon into two pieces. * The orientation of the rings in the polygon does not matter. *

* The shell and holes must conform to the assertions specified in the OpenGIS Simple Features * Specification for SQL . * */ class GEOS_DLL Polygon: public virtual Geometry, public Polygonal { public: friend class GeometryFactory; /// A vector of const Polygon pointers typedef std::vector ConstVect; virtual ~Polygon(); /** * Creates and returns a full copy of this {@link Polygon} object. * (including all coordinates contained by it). * * @return a clone of this instance */ virtual Geometry *clone() const { return new Polygon(*this); } CoordinateSequence* getCoordinates() const; size_t getNumPoints() const; /// Returns surface dimension (2) Dimension::DimensionType getDimension() const; /// Returns coordinate dimension. virtual int getCoordinateDimension() const; /// Returns 1 (Polygon boundary is a MultiLineString) int getBoundaryDimension() const; /** \brief * Computes the boundary of this geometry * * @return a lineal geometry (which may be empty) * @see Geometry#getBoundary */ Geometry* getBoundary() const; bool isEmpty() const; /** \brief * Tests if a valid polygon is simple. * This method always returns true, since a valid polygon is always simple * * @return true */ bool isSimple() const; /// Returns the exterior ring (shell) const LineString* getExteriorRing() const; /// Returns number of interior rings (hole) size_t getNumInteriorRing() const; /// Get nth interior ring (hole) const LineString* getInteriorRingN(std::size_t n) const; std::string getGeometryType() const; virtual GeometryTypeId getGeometryTypeId() const; bool equalsExact(const Geometry *other, double tolerance=0) const; void apply_rw(const CoordinateFilter *filter); void apply_ro(CoordinateFilter *filter) const; void apply_rw(GeometryFilter *filter); void apply_ro(GeometryFilter *filter) const; void apply_rw(CoordinateSequenceFilter& filter); void apply_ro(CoordinateSequenceFilter& filter) const; Geometry* convexHull() const; void normalize(); int compareToSameClass(const Geometry *p) const; //was protected const Coordinate* getCoordinate() const; double getArea() const; /// Returns the perimeter of this Polygon double getLength() const; void apply_rw(GeometryComponentFilter *filter); void apply_ro(GeometryComponentFilter *filter) const; bool isRectangle() const; protected: Polygon(const Polygon &p); /** * Constructs a Polygon with the given exterior * and interior boundaries. * * @param newShell the outer boundary of the new Polygon, * or null or an empty * LinearRing if the empty geometry * is to be created. * * @param newHoles the LinearRings defining the inner * boundaries of the new Polygon, or * null or empty LinearRing * if the empty geometry is to be created. * * @param newFactory the GeometryFactory used to create this geometry * * Polygon will take ownership of Shell and Holes LinearRings */ Polygon(LinearRing *newShell, std::vector *newHoles, const GeometryFactory *newFactory); LinearRing *shell; std::vector *holes; //Actually vector Envelope::AutoPtr computeEnvelopeInternal() const; private: void normalize(LinearRing *ring, bool clockwise); }; } // namespace geos::geom } // namespace geos #endif // ndef GEOS_GEOM_POLYGON_H