Skip to content

Commit

Permalink
New classes for circle and ellipse.
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti authored and nyalldawson committed Apr 27, 2017
1 parent ccb4ac9 commit 84471f2
Show file tree
Hide file tree
Showing 16 changed files with 1,994 additions and 14 deletions.
2 changes: 2 additions & 0 deletions python/core/core.sip
Expand Up @@ -368,10 +368,12 @@

%Include geometry/qgsabstractgeometry.sip
%Include geometry/qgsbox3d.sip
%Include geometry/qgscircle.sip
%Include geometry/qgscircularstring.sip
%Include geometry/qgscompoundcurve.sip
%Include geometry/qgscurvepolygon.sip
%Include geometry/qgscurve.sip
%Include geometry/qgsellipse.sip
%Include geometry/qgsgeometry.sip
%Include geometry/qgsgeometrycollection.sip
%Include geometry/qgsgeometryengine.sip
Expand Down
177 changes: 177 additions & 0 deletions python/core/geometry/qgscircle.sip
@@ -0,0 +1,177 @@
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/geometry/qgscircle.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/








class QgsCircle : QgsEllipse
{
%Docstring
Circle geometry type.

A circle is defined by a center point with a radius and an azimuth.
The azimuth is the north angle to the semi-major axis, in degrees. By default, the semi-major axis is oriented to the north (0 degrees).
.. versionadded:: 3.0
%End

%TypeHeaderCode
#include "qgscircle.h"
%End
public:
QgsCircle();

QgsCircle( const QgsPointV2 &center, double radius, double azimuth = 0 );
%Docstring
Constructs a circle by defining all the members.
\param center The center of the circle.
\param radius The radius of the circle.
\param azimuth Angle in degrees started from the North to the first quadrant.
%End

static QgsCircle from2Points( const QgsPointV2 &pt1, const QgsPointV2 &pt2 );
%Docstring
Constructs a circle by 2 points on the circle.
The center point can have z and m values which are the result from the midpoint operation between ``pt1`` and ``pt2``.
The radius is calculated from the 2D distance between ``pt1`` and ``pt2``.
The azimuth is the angle between ``pt1`` and ``pt2``.
\param pt1 First point.
\param pt2 Second point.
:rtype: QgsCircle
%End

static QgsCircle from3Points( const QgsPointV2 &pt1, const QgsPointV2 &pt2, const QgsPointV2 &pt3, double epsilon = 1E-8 );
%Docstring
Constructs a circle by 3 points on the circle.
Z and m values are dropped for the center point.
The azimuth always takes the default value.
If the points are colinear an empty circle is returned.
\param pt1 First point.
\param pt2 Second point.
\param pt3 Third point.
\param epsilon Value used to compare point.
:rtype: QgsCircle
%End

static QgsCircle fromCenterDiameter( const QgsPointV2 &center, double diameter, double azimuth = 0 );
%Docstring
Constructs a circle by a center point and a diameter.
The center point keeps z and m values from ``center``.
\param center Center point.
\param diameter Diameter of the circle.
\param azimuth Azimuth of the circle.
:rtype: QgsCircle
%End


static QgsCircle fromCenterPoint( const QgsPointV2 &center, const QgsPointV2 &pt1 );
%Docstring
Constructs a circle by a center point and another point.
The center point keeps z and m values from ``center``.
Axes are calculated from the 2D distance between ``center`` and ``pt1``.
The azimuth is the angle between ``center`` and ``pt1``.
\param center Center point.
\param pt1 A point on the circle.
:rtype: QgsCircle
%End


static QgsCircle from3Tangents( const QgsPointV2 &pt1_tg1, const QgsPointV2 &pt2_tg1,
const QgsPointV2 &pt1_tg2, const QgsPointV2 &pt2_tg2,
const QgsPointV2 &pt1_tg3, const QgsPointV2 &pt2_tg3, double epsilon = 1E-8 );
%Docstring
Constructs a circle by 3 tangents on the circle (aka inscribed circle of a triangle).
Z and m values are dropped for the center point.
The azimuth always takes the default value.
\param pt1_tg1 First point of the first tangent.
\param pt2_tg1 Second point of the first tangent.
\param pt1_tg2 First point of the second tangent.
\param pt2_tg2 Second point of the second tangent.
\param pt1_tg3 First point of the third tangent.
\param pt2_tg3 Second point of the third tangent.
\param epsilon Value used to compare point.
:rtype: QgsCircle
%End

static QgsCircle fromExtent( const QgsPointV2 &pt1, const QgsPointV2 &pt2 );
%Docstring
Constructs a circle by an extent (aka bounding box / QgsRectangle).
The center point can have z and m values which are the result from the midpoint operation between ``pt1`` and ``pt2``.
Axes are calculated from the 2D distance between ``pt1`` and ``pt2``.
The azimuth always takes the default value.
\param pt1 First corner.
\param pt2 Second corner.
:rtype: QgsCircle
%End

virtual double area() const;

virtual double perimeter() const;




virtual void setSemiMajorAxis( const double semiMajorAxis );
%Docstring
Inherited method. Use setRadius instead.
\see radius()
\see setRadius()
%End

virtual void setSemiMinorAxis( const double semiMinorAxis );
%Docstring
Inherited method. Use setRadius instead.
\see radius()
\see setRadius()
%End

double radius() const;
%Docstring
Returns the radius of the circle
:rtype: float
%End
void setRadius( double radius );
%Docstring
Set the radius of the circle
%End

QVector<QgsPointV2> northQuadrant() const /Factory/;
%Docstring
The four quadrants of the ellipse.
They are oriented and started from North.
:return: quadrants defined by four points.
\see quadrant()
:rtype: list of QgsPointV2
%End

QgsCircularString *toCircularString( bool oriented = false ) const;
%Docstring
Returns a circular string from the circle.
\param oriented If oriented is true the start point is from azimuth instead from north.
:rtype: QgsCircularString
%End


virtual QgsRectangle boundingBox() const;


virtual QString toString( int pointPrecision = 17, int radiusPrecision = 17, int azimuthPrecision = 2 ) const;


};

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/geometry/qgscircle.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/

0 comments on commit 84471f2

Please sign in to comment.