QGIS API Documentation
3.14.0-Pi (9f7028fd23)
|
Go to the documentation of this file.
18 #ifndef QGSCOMPOUNDCURVE_H
19 #define QGSCOMPOUNDCURVE_H
21 #include "qgis_core.h"
44 void clear()
override;
47 bool fromWkt(
const QString &wkt )
override;
49 QByteArray
asWkb( QgsAbstractGeometry::WkbFlags flags = QgsAbstractGeometry::WkbFlags() )
const override;
56 double length()
const override;
71 bool removeDuplicateNodes(
double epsilon = 4 * std::numeric_limits<double>::epsilon(),
bool useZValues =
false )
override;
76 int nCurves()
const {
return mCurves.size(); }
81 const QgsCurve *curveAt(
int i )
const;
92 void removeCurve(
int i );
97 void addVertex(
const QgsPoint &pt );
99 void draw( QPainter &p )
const override;
101 void transform( const QTransform &t,
double zTranslate = 0.0,
double zScale = 1.0,
double mTranslate = 0.0,
double mScale = 1.0 ) override;
102 void addToPainterPath( QPainterPath &path ) const override;
103 void drawAsPolygon( QPainter &p ) const override;
106 bool deleteVertex(
QgsVertexId position ) override;
109 void sumUpArea(
double &sum
SIP_OUT ) const override;
114 bool hasCurvedSegments() const override;
115 double vertexAngle(
QgsVertexId vertex ) const override;
116 double segmentLength(
QgsVertexId startVertex ) const override;
121 bool addZValue(
double zValue = 0 ) override;
122 bool addMValue(
double mValue = 0 ) override;
124 bool dropZValue() override;
125 bool dropMValue() override;
126 void swapXy() override;
128 double xAt(
int index ) const override;
129 double yAt(
int index ) const override;
153 SIP_PYOBJECT __repr__();
155 QString wkt = sipCpp->asWkt();
156 if ( wkt.length() > 1000 )
157 wkt = wkt.left( 1000 ) + QStringLiteral(
"..." );
158 QString str = QStringLiteral(
"<QgsCompoundCurve: %1>" ).arg( wkt );
159 sipRes = PyUnicode_FromString( str.toUtf8().constData() );
168 QVector< QgsCurve * > mCurves;
173 QVector< QPair<int, QgsVertexId> > curveVertexId(
QgsVertexId id )
const;
179 #endif // QGSCOMPOUNDCURVE_H
Abstract base class for curved geometry type.
virtual bool removeDuplicateNodes(double epsilon=4 *std::numeric_limits< double >::epsilon(), bool useZValues=false)=0
Removes duplicate nodes from the geometry, wherever removing the nodes does not result in a degenerat...
virtual bool fromWkt(const QString &wkt)=0
Sets the geometry from a WKT string.
QgsWkbTypes::Type wkbType() const
Returns the WKB type of the geometry.
virtual QgsPoint startPoint() const =0
Returns the starting point of the curve.
virtual QByteArray asWkb(WkbFlags flags=QgsAbstractGeometry::WkbFlags()) const =0
Returns a WKB representation of the geometry.
Point geometry type, with support for z-dimension and m-values.
virtual QgsAbstractGeometry * snappedToGrid(double hSpacing, double vSpacing, double dSpacing=0, double mSpacing=0) const =0
Makes a new geometry with all the points or vertices snapped to the closest point of the grid.
virtual void filterVertices(const std::function< bool(const QgsPoint &) > &filter)
Filters the vertices from the geometry in place, removing any which do not return true for the filter...
virtual QString asWkt(int precision=17) const =0
Returns a WKT representation of the geometry.
virtual double length() const
Returns the planar, 2-dimensional length of the geometry.
SegmentationToleranceType
Segmentation tolerance as maximum angle or maximum difference between approximation and circle.
Line string geometry type, with support for z-dimension and m-values.
double closestSegment(const QgsPolylineXY &pl, const QgsPointXY &pt, int &vertexAfter, double epsilon)
int nCurves() const
Returns the number of curves in the geometry.
double ANALYSIS_EXPORT leftOf(const QgsPoint &thepoint, const QgsPoint *p1, const QgsPoint *p2)
Returns whether 'thepoint' is left or right of the line from 'p1' to 'p2'. Negative values mean left ...
virtual int dimension() const =0
Returns the inherent dimension of the geometry.
virtual QgsPoint endPoint() const =0
Returns the end point of the curve.
AxisOrder
Axis order for GML generation.
virtual json asJsonObject(int precision=17) const
Returns a json object representation of the geometry.
virtual bool equals(const QgsCurve &other) const =0
Checks whether this curve exactly equals another curve.
virtual void clear()=0
Clears the geometry, ie reset it to a null geometry.
virtual bool isEmpty() const
Returns true if the geometry is empty.
virtual bool fromWkb(QgsConstWkbPtr &wkb)=0
Sets the geometry from a WKB string.
const QgsCompoundCurve * cast(const QgsAbstractGeometry *geom) const
Cast the geom to a QgsCompoundCurve.
Abstract base class for all geometries.
virtual QString geometryType() const =0
Returns a unique string representing the geometry type.
QgsCurve * clone() const override=0
Clones the geometry by performing a deep copy.
virtual QgsAbstractGeometry * createEmptyWithSameType() const =0
Creates a new geometry with the same class and same WKB type as the original and transfers ownership.
virtual QDomElement asGml3(QDomDocument &doc, int precision=17, const QString &ns="gml", AxisOrder axisOrder=QgsAbstractGeometry::AxisOrder::XY) const =0
Returns a GML3 representation of the geometry.
QgsAbstractGeometry & operator=(const QgsAbstractGeometry &geom)
QVector< QgsPoint > QgsPointSequence
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
virtual void draw(QPainter &p) const =0
Draws the geometry using the specified QPainter.
Utility class for identifying a unique vertex within a geometry.
virtual void transformVertices(const std::function< QgsPoint(const QgsPoint &) > &transform)
Transforms the vertices from the geometry in place, applying the transform function to every vertex.
virtual void points(QgsPointSequence &pt) const =0
Returns a list of points within the curve.
virtual int numPoints() const =0
Returns the number of points in the curve.
virtual void transform(const QgsCoordinateTransform &ct, QgsCoordinateTransform::TransformDirection d=QgsCoordinateTransform::ForwardTransform, bool transformZ=false) SIP_THROW(QgsCsException)=0
Transforms the geometry using a coordinate transform.
virtual QgsLineString * curveToLine(double tolerance=M_PI_2/90, SegmentationToleranceType toleranceType=MaximumAngle) const =0
Returns a new line string geometry corresponding to a segmentized approximation of the curve.
static Type flatType(Type type)
Returns the flat type for a WKB type.
virtual QDomElement asGml2(QDomDocument &doc, int precision=17, const QString &ns="gml", AxisOrder axisOrder=QgsAbstractGeometry::AxisOrder::XY) const =0
Returns a GML2 representation of the geometry.
Compound curve geometry type.
virtual QgsRectangle calculateBoundingBox() const
Default calculator for the minimal bounding box for the geometry.