QGIS API Documentation  3.2.0-Bonn (bc43194)
qgscircle.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgscircle.h
3  --------------
4  begin : March 2017
5  copyright : (C) 2017 by Loîc Bartoletti
6  email : lbartoletti at tuxfamily dot org
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 QGSCIRCLE_H
19 #define QGSCIRCLE_H
20 
21 #include <QString>
22 
23 #include "qgis_core.h"
24 #include "qgsellipse.h"
25 #include "qgspoint.h"
26 #include "qgspolygon.h"
27 #include "qgsrectangle.h"
28 #include "qgscircularstring.h"
29 
30 
42 class CORE_EXPORT QgsCircle : public QgsEllipse
43 {
44  public:
45  QgsCircle();
46 
53  QgsCircle( const QgsPoint &center, double radius, double azimuth = 0 );
54 
65  static QgsCircle from2Points( const QgsPoint &pt1, const QgsPoint &pt2 );
66 
79  static QgsCircle from3Points( const QgsPoint &pt1, const QgsPoint &pt2, const QgsPoint &pt3, double epsilon = 1E-8 );
80 
88  static QgsCircle fromCenterDiameter( const QgsPoint &center, double diameter, double azimuth = 0 );
89 
90 
99  static QgsCircle fromCenterPoint( const QgsPoint &center, const QgsPoint &pt1 );
100 
101 
114  static QgsCircle from3Tangents( const QgsPoint &pt1_tg1, const QgsPoint &pt2_tg1,
115  const QgsPoint &pt1_tg2, const QgsPoint &pt2_tg2,
116  const QgsPoint &pt1_tg3, const QgsPoint &pt2_tg3, double epsilon = 1E-8 );
117 
128  static QgsCircle fromExtent( const QgsPoint &pt1, const QgsPoint &pt2 );
129 
140  static QgsCircle minimalCircleFrom3Points( const QgsPoint &pt1, const QgsPoint &pt2, const QgsPoint &pt3, double epsilon = 1E-8 );
141 
156  int intersections( const QgsCircle &other, QgsPoint &intersection1 SIP_OUT, QgsPoint &intersection2 SIP_OUT, bool useZ = false ) const;
157 
171  bool tangentToPoint( const QgsPointXY &p, QgsPointXY &pt1 SIP_OUT, QgsPointXY &pt2 SIP_OUT ) const;
172 
194  int outerTangents( const QgsCircle &other,
195  QgsPointXY &line1P1 SIP_OUT, QgsPointXY &line1P2 SIP_OUT,
196  QgsPointXY &line2P1 SIP_OUT, QgsPointXY &line2P2 SIP_OUT ) const;
197 
198  double area() const override;
199  double perimeter() const override;
200 
201  //inherited
202  // void setAzimuth(const double azimuth);
203  // double azimuth() const {return mAzimuth; }
204 
205 
211  void setSemiMajorAxis( double semiMajorAxis ) override;
212 
218  void setSemiMinorAxis( double semiMinorAxis ) override;
219 
221  double radius() const {return mSemiMajorAxis;}
223  void setRadius( double radius )
224  {
225  mSemiMajorAxis = std::fabs( radius );
226  mSemiMinorAxis = mSemiMajorAxis;
227  }
228 
235  QVector<QgsPoint> northQuadrant() const SIP_FACTORY;
236 
241  QgsCircularString *toCircularString( bool oriented = false ) const;
242 
244  bool contains( const QgsPoint &point, double epsilon = 1E-8 ) const;
245 
246  QgsRectangle boundingBox() const override;
247 
248  QString toString( int pointPrecision = 17, int radiusPrecision = 17, int azimuthPrecision = 2 ) const override;
249 
250 #ifdef SIP_RUN
251  SIP_PYOBJECT __repr__();
252  % MethodCode
253  QString str = QStringLiteral( "<QgsCircle: %1>" ).arg( sipCpp->toString() );
254  sipRes = PyUnicode_FromString( str.toUtf8().data() );
255  % End
256 #endif
257 };
258 
259 #endif // QGSCIRCLE_H
void setRadius(double radius)
Sets the radius of the circle.
Definition: qgscircle.h:223
Circle geometry type.
Definition: qgscircle.h:42
A rectangle specified with double values.
Definition: qgsrectangle.h:40
static QgsEllipse fromCenterPoint(const QgsPoint &ptc, const QgsPoint &pt1)
Constructs an ellipse by a center point and a another point.
Definition: qgsellipse.cpp:77
A class to represent a 2D point.
Definition: qgspointxy.h:43
double radius() const
Returns the radius of the circle.
Definition: qgscircle.h:221
double mSemiMajorAxis
Definition: qgsellipse.h:253
static QgsEllipse fromExtent(const QgsPoint &pt1, const QgsPoint &pt2)
Constructs an ellipse by an extent (aka bounding box / QgsRectangle).
Definition: qgsellipse.cpp:65
virtual void setSemiMinorAxis(double semiMinorAxis)
Sets the semi-minor axis.
Definition: qgsellipse.cpp:129
#define SIP_FACTORY
Definition: qgis_sip.h:69
Point geometry type, with support for z-dimension and m-values.
Definition: qgspoint.h:37
virtual void setSemiMajorAxis(double semiMajorAxis)
Sets the semi-major axis.
Definition: qgsellipse.cpp:124
virtual QString toString(int pointPrecision=17, int axisPrecision=17, int azimuthPrecision=2) const
returns a string representation of the ellipse.
Definition: qgsellipse.cpp:276
virtual double area() const
The area of the ellipse.
Definition: qgsellipse.cpp:165
#define SIP_OUT
Definition: qgis_sip.h:51
Circular string geometry type.
Ellipse geometry type.
Definition: qgsellipse.h:39
virtual QgsRectangle boundingBox() const
Returns the minimal bounding box for the ellipse.
Definition: qgsellipse.cpp:253
virtual double perimeter() const
The circumference of the ellipse using first approximation of Ramanujan.
Definition: qgsellipse.cpp:170