QGIS API Documentation  2.12.0-Lyon
qgscircularstringv2.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgscircularstringv2.h
3  ---------------------
4  begin : September 2014
5  copyright : (C) 2014 by Marco Hugentobler
6  email : marco at sourcepole dot ch
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSCIRCULARSTRING_H
19 #define QGSCIRCULARSTRING_H
20 
21 #include "qgscurvev2.h"
22 #include <QVector>
23 
30 class CORE_EXPORT QgsCircularStringV2: public QgsCurveV2
31 {
32  public:
35 
36  virtual QString geometryType() const override { return "CircularString"; }
37  virtual int dimension() const override { return 1; }
38  virtual QgsCircularStringV2* clone() const override;
39  virtual void clear() override;
40 
41  virtual QgsRectangle calculateBoundingBox() const override;
42 
43  virtual bool fromWkb( const unsigned char * wkb ) override;
44  virtual bool fromWkt( const QString& wkt ) override;
45 
46  int wkbSize() const override;
47  unsigned char* asWkb( int& binarySize ) const override;
48  QString asWkt( int precision = 17 ) const override;
49  QDomElement asGML2( QDomDocument& doc, int precision = 17, const QString& ns = "gml" ) const override;
50  QDomElement asGML3( QDomDocument& doc, int precision = 17, const QString& ns = "gml" ) const override;
51  QString asJSON( int precision = 17 ) const override;
52 
53  int numPoints() const override;
54 
57  QgsPointV2 pointN( int i ) const;
58 
62  void points( QList<QgsPointV2>& pts ) const override;
63 
66  void setPoints( const QList<QgsPointV2>& points );
67 
71  virtual double length() const override;
72 
76  virtual QgsPointV2 startPoint() const override;
80  virtual QgsPointV2 endPoint() const override;
84  virtual QgsLineStringV2* curveToLine() const override;
85 
86  void draw( QPainter& p ) const override;
92  void transform( const QTransform& t ) override;
93 #if 0
94  void clip( const QgsRectangle& rect ) override;
95 #endif
96  void addToPainterPath( QPainterPath& path ) const override;
97 
101  void drawAsPolygon( QPainter& p ) const override;
102 
103  virtual bool insertVertex( const QgsVertexId& position, const QgsPointV2& vertex ) override;
104  virtual bool moveVertex( const QgsVertexId& position, const QgsPointV2& newPos ) override;
105  virtual bool deleteVertex( const QgsVertexId& position ) override;
106 
107  double closestSegment( const QgsPointV2& pt, QgsPointV2& segmentPt, QgsVertexId& vertexAfter, bool* leftOf, double epsilon ) const override;
111  bool pointAt( int i, QgsPointV2& vertex, QgsVertexId::VertexType& type ) const override;
112 
116  void sumUpArea( double& sum ) const override;
117 
121  bool hasCurvedSegments() const override { return true; }
122 
126  double vertexAngle( const QgsVertexId& vertex ) const override;
127 
128  virtual bool addZValue( double zValue = 0 ) override;
129  virtual bool addMValue( double mValue = 0 ) override;
130 
131  private:
132  QVector<double> mX;
133  QVector<double> mY;
134  QVector<double> mZ;
135  QVector<double> mM;
136 
137  //helper methods for curveToLine
138  void segmentize( const QgsPointV2& p1, const QgsPointV2& p2, const QgsPointV2& p3, QList<QgsPointV2>& points ) const;
139  int segmentSide( const QgsPointV2& pt1, const QgsPointV2& pt3, const QgsPointV2& pt2 ) const;
140  double interpolateArc( double angle, double a1, double a2, double a3, double zm1, double zm2, double zm3 ) const;
141  static void arcTo( QPainterPath& path, const QPointF& pt1, const QPointF& pt2, const QPointF& pt3 );
142  //bounding box of a single segment
143  static QgsRectangle segmentBoundingBox( const QgsPointV2& pt1, const QgsPointV2& pt2, const QgsPointV2& pt3 );
144  static QList<QgsPointV2> compassPointsOnSegment( double p1Angle, double p2Angle, double p3Angle, double centerX, double centerY, double radius );
145  static double closestPointOnArc( double x1, double y1, double x2, double y2, double x3, double y3,
146  const QgsPointV2& pt, QgsPointV2& segmentPt, QgsVertexId& vertexAfter, bool* leftOf, double epsilon );
147  void insertVertexBetween( int after, int before, int pointOnCircle );
148  void deleteVertex( int i );
149 };
150 
151 #endif // QGSCIRCULARSTRING_H
A rectangle specified with double values.
Definition: qgsrectangle.h:35
virtual double vertexAngle(const QgsVertexId &vertex) const =0
Returns approximate rotation angle for a vertex.
virtual bool moveVertex(const QgsVertexId &position, const QgsPointV2 &newPos)=0
Moves a vertex within the geometry.
Circular string geometry type.
virtual double length() const
Returns the length of the geometry.
virtual void points(QList< QgsPointV2 > &pt) const =0
Returns a list of points within the curve.
virtual QString asJSON(int precision=17) const =0
Returns a GeoJSON representation of the geometry.
virtual void addToPainterPath(QPainterPath &path) const =0
Adds a curve to a painter path.
TransformDirection
Enum used to indicate the direction (forward or inverse) of the transform.
virtual int wkbSize() const =0
Returns the size of the WKB representation of the geometry.
virtual bool insertVertex(const QgsVertexId &position, const QgsPointV2 &vertex)=0
Inserts a vertex into the geometry.
virtual bool addMValue(double mValue=0)=0
Adds a measure to the geometry, initialized to a preset value.
virtual void clear()=0
Clears the geometry, ie reset it to a null geometry.
virtual int numPoints() const =0
Returns the number of points in the curve.
virtual bool pointAt(int i, QgsPointV2 &vertex, QgsVertexId::VertexType &type) const =0
Returns the point and vertex id of a point within the curve.
Utility class for identifying a unique vertex within a geometry.
Line string geometry type.
virtual QgsRectangle calculateBoundingBox() const
Calculates the minimal bounding box for the geometry.
virtual bool fromWkb(const unsigned char *wkb)=0
Sets the geometry from a WKB string.
Point geometry type.
Definition: qgspointv2.h:29
virtual unsigned char * asWkb(int &binarySize) const =0
Returns a WKB representation of the geometry.
virtual void transform(const QgsCoordinateTransform &ct, QgsCoordinateTransform::TransformDirection d=QgsCoordinateTransform::ForwardTransform)=0
Transforms the geometry using a coordinate transform.
virtual bool addZValue(double zValue=0)=0
Adds a z-dimension to the geometry, initialized to a preset value.
virtual QDomElement asGML3(QDomDocument &doc, int precision=17, const QString &ns="gml") const =0
Returns a GML3 representation of the geometry.
virtual QString geometryType() const override
Returns a unique string representing the geometry type.
virtual bool fromWkt(const QString &wkt)=0
Sets the geometry from a WKT string.
double ANALYSIS_EXPORT angle(Point3D *p1, Point3D *p2, Point3D *p3, Point3D *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
bool hasCurvedSegments() const override
Returns true if the geometry contains curved segments.
virtual void sumUpArea(double &sum) const =0
Calculates the area of the curve.
virtual bool deleteVertex(const QgsVertexId &position)=0
Deletes a vertex within the geometry.
virtual QgsLineStringV2 * curveToLine() const =0
Returns a new line string geometry corresponding to a segmentized approximation of the curve...
virtual QgsPointV2 endPoint() const =0
Returns the end point of the curve.
virtual int dimension() const override
Returns the inherent dimension of the geometry.
QgsAbstractGeometryV2 * segmentize() const override
Returns a version of the geometry without curves.
Definition: qgscurvev2.cpp:80
Class for doing transforms between two map coordinate systems.
virtual QString asWkt(int precision=17) const =0
Returns a WKT representation of the geometry.
virtual QgsPointV2 startPoint() const =0
Returns the starting point of the curve.
virtual void draw(QPainter &p) const =0
Draws the geometry using the specified QPainter.
virtual void drawAsPolygon(QPainter &p) const =0
Draws the curve as a polygon on the specified QPainter.
double ANALYSIS_EXPORT leftOf(Point3D *thepoint, Point3D *p1, Point3D *p2)
Returns whether 'thepoint' is left or right of the line from 'p1' to 'p2'.
virtual QDomElement asGML2(QDomDocument &doc, int precision=17, const QString &ns="gml") const =0
Returns a GML2 representation of the geometry.
virtual QgsAbstractGeometryV2 * clone() const =0
Clones the geometry by performing a deep copy.
Abstract base class for curved geometry type.
Definition: qgscurvev2.h:32
virtual double closestSegment(const QgsPointV2 &pt, QgsPointV2 &segmentPt, QgsVertexId &vertexAfter, bool *leftOf, double epsilon) const =0
Searches for the closest segment of the geometry to a given point.