/********************************************************************** * $Id: Polygon.h 1820 2006-09-06 16:54:23Z mloskot $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * 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 rev. 1.47 * **********************************************************************/ #ifndef GEOS_GEOM_POLYGON_H #define GEOS_GEOM_POLYGON_H #include #include #include #include #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 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 Polygon: public Geometry{ public: friend class GeometryFactory; /// A vector of const Polygon pointers typedef std::vector ConstVect; virtual ~Polygon(); virtual Geometry *clone() const { return new Polygon(*this); } CoordinateSequence* getCoordinates() const; size_t getNumPoints() const; /// Returns surface dimension (2) Dimension::DimensionType getDimension() const; /// Returns 1 (Polygon boundary is a MultiLineString) int getBoundaryDimension() const; /** * \brief * Returns a MultiLineString. * One LineString for the shell and one for each hole. * Empty for an empty Polygon. */ 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(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; 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 //#ifdef GEOS_INLINE //# include "geos/geom/Polygon.inl" //#endif #endif // ndef GEOS_GEOM_POLYGON_H /********************************************************************** * $Log$ * Revision 1.7 2006/06/08 17:58:57 strk * Polygon::getNumInteriorRing() return size_t, Polygon::interiorRingN() takes size_t. * * Revision 1.6 2006/05/04 15:49:39 strk * updated all Geometry::getDimension() methods to return Dimension::DimensionType (closes bug#93) * * Revision 1.5 2006/04/28 10:55:39 strk * Geometry constructors made protected, to ensure all constructions use GeometryFactory, * which has been made friend of all Geometry derivates. getNumPoints() changed to return * size_t. * * Revision 1.4 2006/04/10 18:15:09 strk * Changed Geometry::envelope member to be of type auto_ptr. * Changed computeEnvelopeInternal() signater to return auto_ptr * * Revision 1.3 2006/03/24 09:52:41 strk * USE_INLINE => GEOS_INLINE * * Revision 1.2 2006/03/15 09:12:45 strk * isSimple doc * * Revision 1.1 2006/03/09 16:46:49 strk * geos::geom namespace definition, first pass at headers split * **********************************************************************/