QGIS/python/core/geometry/qgscircularstring.sip

142 lines
4.5 KiB
Plaintext
Raw Normal View History

2017-04-27 07:55:22 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/geometry/qgscircularstring.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class QgsCircularString: QgsCurve
2015-05-15 15:41:56 +02:00
{
2017-04-27 07:55:22 +02:00
%Docstring
Circular string geometry type
.. versionadded:: 2.10
2015-05-15 15:41:56 +02:00
%End
2017-04-27 07:55:22 +02:00
%TypeHeaderCode
#include "qgscircularstring.h"
%End
2015-05-15 15:41:56 +02:00
public:
2016-08-06 11:01:42 +02:00
QgsCircularString();
2015-05-15 15:41:56 +02:00
2017-04-27 07:55:22 +02:00
virtual bool operator==( const QgsCurve &other ) const;
virtual bool operator!=( const QgsCurve &other ) const;
2015-05-15 15:41:56 +02:00
virtual QString geometryType() const;
virtual int dimension() const;
2017-04-27 07:55:22 +02:00
virtual QgsCircularString *clone() const /Factory/;
2015-05-15 15:41:56 +02:00
virtual void clear();
2017-04-27 07:55:22 +02:00
virtual bool fromWkb( QgsConstWkbPtr &wkb );
virtual bool fromWkt( const QString &wkt );
2015-05-15 15:41:56 +02:00
2017-04-27 07:55:22 +02:00
virtual QByteArray asWkb() const;
virtual QString asWkt( int precision = 17 ) const;
virtual QDomElement asGML2( QDomDocument &doc, int precision = 17, const QString &ns = "gml" ) const;
virtual QDomElement asGML3( QDomDocument &doc, int precision = 17, const QString &ns = "gml" ) const;
virtual QString asJSON( int precision = 17 ) const;
virtual bool isEmpty() const;
virtual int numPoints() const;
2015-05-15 15:41:56 +02:00
2016-01-28 10:30:06 +01:00
QgsPoint pointN( int i ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the point at index i within the circular string.
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
2016-01-28 10:30:06 +01:00
2017-04-27 07:55:22 +02:00
virtual void points( QgsPointSequence &pts /Out/ ) const;
2015-05-15 15:41:56 +02:00
2017-04-27 07:55:22 +02:00
void setPoints( const QgsPointSequence &points );
%Docstring
Sets the circular string's points
%End
2016-01-28 10:30:06 +01:00
2017-04-27 07:55:22 +02:00
virtual double length() const;
virtual QgsPoint startPoint() const;
virtual QgsPoint endPoint() const;
2017-04-27 07:55:22 +02:00
virtual QgsLineString *curveToLine( double tolerance = M_PI_2 / 90, SegmentationToleranceType toleranceType = MaximumAngle ) const /Factory/;
%Docstring
Returns a new line string geometry corresponding to a segmentized approximation
of the curve.
\param tolerance segmentation tolerance
\param toleranceType maximum segmentation angle or maximum difference between approximation and curve*
:rtype: QgsLineString
%End
virtual void draw( QPainter &p ) const;
virtual void transform( const QgsCoordinateTransform &ct, QgsCoordinateTransform::TransformDirection d = QgsCoordinateTransform::ForwardTransform,
bool transformZ = false );
2017-04-27 07:55:22 +02:00
virtual void transform( const QTransform &t );
virtual void addToPainterPath( QPainterPath &path ) const;
2016-01-28 10:30:06 +01:00
2015-05-15 15:41:56 +02:00
2017-04-27 07:55:22 +02:00
virtual void drawAsPolygon( QPainter &p ) const;
virtual bool insertVertex( QgsVertexId position, const QgsPoint &vertex );
virtual bool moveVertex( QgsVertexId position, const QgsPoint &newPos );
virtual bool deleteVertex( QgsVertexId position );
2015-05-15 15:41:56 +02:00
virtual double closestSegment( const QgsPoint &pt, QgsPoint &segmentPt /Out/,
2017-04-27 07:55:22 +02:00
QgsVertexId &vertexAfter /Out/,
bool *leftOf /Out/, double epsilon ) const;
virtual bool pointAt( int node, QgsPoint &point, QgsVertexId::VertexType &type ) const;
2017-04-27 07:55:22 +02:00
virtual void sumUpArea( double &sum /Out/ ) const;
2015-05-15 15:41:56 +02:00
2017-04-27 07:55:22 +02:00
virtual bool hasCurvedSegments() const;
2015-05-29 20:35:42 +02:00
2017-04-27 07:55:22 +02:00
virtual double vertexAngle( QgsVertexId vertex ) const;
2015-05-29 20:35:42 +02:00
2017-04-27 07:55:22 +02:00
%Docstring
Returns approximate rotation angle for a vertex. Usually average angle between adjacent segments.
\param vertex the vertex id
:return: rotation in radians, clockwise from north*
:rtype: float
%End
2017-04-27 07:55:22 +02:00
virtual QgsCircularString *reversed() const /Factory/;
virtual bool addZValue( double zValue = 0 );
virtual bool addMValue( double mValue = 0 );
virtual bool dropZValue();
virtual bool dropMValue();
virtual double xAt( int index ) const;
2017-04-27 07:55:22 +02:00
virtual double yAt( int index ) const;
2017-04-27 07:55:22 +02:00
protected:
virtual QgsRectangle calculateBoundingBox() const;
2015-05-15 15:41:56 +02:00
};
2017-04-27 07:55:22 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/geometry/qgscircularstring.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/