struct QgsVertexId { %TypeHeaderCode #include %End enum VertexType { SegmentVertex, //start / endpoint of a segment CurveVertex }; QgsVertexId(); QgsVertexId( int _part, int _ring, int _vertex, VertexType _type); bool isValid() const; bool operator==( const QgsVertexId& other ) const; bool operator!=( const QgsVertexId& other ) const; bool partEqual( const QgsVertexId& o ) const; bool ringEqual( const QgsVertexId& o ) const; bool vertexEqual( const QgsVertexId& o ) const; bool isValid(const QgsAbstractGeometryV2* geom) const; int part; int ring; int vertex; VertexType type; }; class QgsAbstractGeometryV2 { %TypeHeaderCode #include #include %End %ConvertToSubClassCode if (dynamic_cast(sipCpp) != NULL) sipClass = sipClass_QgsPointV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsLineStringV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsCircularStringV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsCompoundCurveV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsPolygonV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsCurvePolygonV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsMultiPointV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsMultiLineStringV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsMultiPolygonV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsMultiSurfaceV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsMultiCurveV2; else if (dynamic_cast(sipCpp) != NULL ) sipClass = sipClass_QgsGeometryCollectionV2; else sipClass = 0; %End public: QgsAbstractGeometryV2(); virtual ~QgsAbstractGeometryV2(); QgsAbstractGeometryV2( const QgsAbstractGeometryV2& geom ); //virtual QgsAbstractGeometryV2& operator=( const QgsAbstractGeometryV2& geom ); virtual QgsAbstractGeometryV2* clone() const = 0; virtual void clear() = 0; QgsRectangle boundingBox() const; //mm-sql interface virtual int dimension() const = 0; //virtual int coordDim() const { return mCoordDimension; } virtual QString geometryType() const = 0; QgsWKBTypes::Type wkbType() const; QString wktTypeStr() const; bool is3D() const; bool isMeasure() const; //import virtual bool fromWkb( const unsigned char * wkb ) = 0; virtual bool fromWkt( const QString& wkt ) = 0; //export virtual int wkbSize() const = 0; virtual unsigned char* asWkb( int& binarySize ) const = 0; virtual QString asWkt( int precision = 17 ) const = 0; virtual QDomElement asGML2( QDomDocument& doc, int precision = 17, const QString& ns = "gml" ) const = 0; virtual QDomElement asGML3( QDomDocument& doc, int precision = 17, const QString& ns = "gml" ) const = 0; virtual QString asJSON( int precision = 17 ) const = 0; virtual QgsRectangle calculateBoundingBox() const; //render pipeline virtual void transform( const QgsCoordinateTransform& ct, QgsCoordinateTransform::TransformDirection d = QgsCoordinateTransform::ForwardTransform ) = 0; virtual void transform( const QTransform& t ) = 0; //virtual void clip( const QgsRectangle& rect ); virtual void draw( QPainter& p ) const = 0; /** Returns next vertex id and coordinates @return false if at end*/ virtual bool nextVertex( QgsVertexId& id, QgsPointV2& vertex ) const = 0; virtual void coordinateSequence( QList< QList< QList< QgsPointV2 > > >& coord /Out/ ) const = 0; int nCoordinates() const; virtual QgsPointV2 vertexAt( const QgsVertexId& id ) const = 0; virtual double closestSegment( const QgsPointV2& pt, QgsPointV2& segmentPt, QgsVertexId& vertexAfter, bool* leftOf, double epsilon ) const = 0; //low-level editing virtual bool insertVertex( const QgsVertexId& position, const QgsPointV2& vertex ) = 0; virtual bool moveVertex( const QgsVertexId& position, const QgsPointV2& newPos ) = 0; virtual bool deleteVertex( const QgsVertexId& position ) = 0; /** Returns the length of the geometry. * @see area() * @see perimeter() */ virtual double length() const; /** Returns the perimeter of the geometry. * @see area() * @see length() */ virtual double perimeter() const; /** Returns the area of the geometry. * @see length() * @see perimeter() */ virtual double area() const; /** Returns the centroid of the geometry*/ virtual QgsPointV2 centroid() const; virtual bool hasCurvedSegments() const; /** Returns a geometry without curves. Caller takes ownership*/ virtual QgsAbstractGeometryV2* segmentize() const /Factory/; /** Returns approximate rotation angle for a vertex. Usually average angle between adjacent segments. @return rotation in radians, clockwise from north*/ virtual double vertexAngle( const QgsVertexId& vertex ) const = 0; virtual int vertexCount(int part = 0, int ring = 0) const = 0; virtual int ringCount(int part = 0) const = 0; virtual int partCount() const = 0; /** Adds a z-dimension to the geometry, initialized to a preset value. * @param zValue initial z-value for all nodes * @returns true on success * @note added in QGIS 2.12 * @see addMValue */ virtual bool addZValue( double zValue = 0 ) = 0; /** Adds a measure to the geometry, initialized to a preset value. * @param mValue initial m-value for all nodes * @returns true on success * @note added in QGIS 2.12 * @see addZValue */ virtual bool addMValue( double mValue = 0 ) = 0; };