2017-04-27 07:55:22 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
2017-06-03 10:52:28 +02:00
* src/core/geometry/qgspoint.h *
2017-04-27 07:55:22 +02:00
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
2017-06-01 12:18:43 +02:00
class QgsPoint: QgsAbstractGeometry
2015-05-15 15:41:56 +02:00
{
2017-04-27 07:55:22 +02:00
%Docstring
Point geometry type, with support for z-dimension and m-values.
2017-06-01 15:37:48 +02:00
.. versionadded:: 3.0
2015-05-15 15:41:56 +02:00
%End
2017-04-27 07:55:22 +02:00
%TypeHeaderCode
2017-06-02 18:17:43 +02:00
#include "qgspoint.h"
2017-04-27 07:55:22 +02:00
%End
2015-11-18 16:24:08 +11:00
public:
2017-06-08 10:20:21 +02:00
QgsPoint( double x = 0.0, double y = 0.0, SIP_PYOBJECT z = Py_None, SIP_PYOBJECT m = Py_None ) [( double x = 0.0, double y = 0.0, double z = 0.0, double m = 0.0 )];
2017-06-08 11:41:35 +02:00
%Docstring
Construct a point with the provided initial coordinate values.
2017-06-08 10:20:21 +02:00
2017-06-08 11:41:35 +02:00
If only z and m are not specified, the type will be a 2D point.
If any or both of the others are specified, the Z and M values will be added accordingly.
2017-06-08 10:20:21 +02:00
%End
%MethodCode
double z;
double m;
if ( a2 == Py_None )
{
z = std::numeric_limits<double>::quiet_NaN();
}
else
{
z = PyFloat_AsDouble( a2 );
}
if ( a3 == Py_None )
{
m = std::numeric_limits<double>::quiet_NaN();
}
else
{
m = PyFloat_AsDouble( a3 );
}
sipCpp = new sipQgsPoint( a0, a1, z, m );
2017-04-27 07:55:22 +02:00
%End
2015-11-18 16:24:08 +11:00
2017-06-01 12:18:43 +02:00
explicit QgsPoint( const QgsPointXY &p );
2017-04-27 07:55:22 +02:00
%Docstring
2017-06-01 12:18:43 +02:00
Construct a QgsPoint from a QgsPointXY object
2017-04-27 07:55:22 +02:00
%End
2015-11-18 21:48:07 +11:00
2017-06-01 12:18:43 +02:00
explicit QgsPoint( QPointF p );
2017-04-27 07:55:22 +02:00
%Docstring
2017-06-01 12:18:43 +02:00
Construct a QgsPoint from a QPointF
2017-04-27 07:55:22 +02:00
%End
2015-11-18 16:24:08 +11:00
2017-06-01 12:18:43 +02:00
QgsPoint( QgsWkbTypes::Type type, double x = 0.0, double y = 0.0, double z = 0.0, double m = 0.0 );
2017-04-27 07:55:22 +02:00
%Docstring
Construct a point with a specified type (e.g., PointZ, PointM) and initial x, y, z, and m values.
\param type point type
\param x x-coordinate of point
\param y y-coordinate of point
\param z z-coordinate of point, for PointZ or PointZM types
\param m m-value of point, for PointM or PointZM types
%End
2016-01-28 10:30:06 +01:00
%MethodCode
2017-04-27 07:55:22 +02:00
if ( QgsWkbTypes::flatType( a0 ) != QgsWkbTypes::Point )
{
PyErr_SetString( PyExc_ValueError,
QString( "%1 is not a valid WKB type for point geometries" ).arg( QgsWkbTypes::displayString( a0 ) ).toUtf8().constData() );
sipIsErr = 1;
}
else
{
2017-06-01 12:18:43 +02:00
sipCpp = new sipQgsPoint( a0, a1, a2, a3, a4 );
2017-04-27 07:55:22 +02:00
}
%End
2017-06-01 12:18:43 +02:00
bool operator==( const QgsPoint &pt ) const;
bool operator!=( const QgsPoint &pt ) const;
2017-04-27 07:55:22 +02:00
%Docstring
:rtype: bool
%End
2015-11-18 16:24:08 +11:00
double x() const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the point's x-coordinate.
2017-04-30 16:51:18 +02:00
.. seealso:: setX()
.. seealso:: rx()
2017-04-27 07:55:22 +02:00
:rtype: float
%End
2015-11-18 16:24:08 +11:00
double y() const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the point's y-coordinate.
2017-04-30 16:51:18 +02:00
.. seealso:: setY()
.. seealso:: ry()
2017-04-27 07:55:22 +02:00
:rtype: float
%End
2015-11-18 16:24:08 +11:00
double z() const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the point's z-coordinate.
2017-04-30 16:51:18 +02:00
.. seealso:: setZ()
.. seealso:: rz()
2017-04-27 07:55:22 +02:00
:rtype: float
%End
2015-11-18 16:24:08 +11:00
double m() const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the point's m value.
2017-04-30 16:51:18 +02:00
.. seealso:: setM()
.. seealso:: rm()
2017-04-27 07:55:22 +02:00
:rtype: float
%End
2015-11-18 16:24:08 +11:00
void setX( double x );
2017-04-27 07:55:22 +02:00
%Docstring
Sets the point's x-coordinate.
2017-04-30 16:51:18 +02:00
.. seealso:: x()
.. seealso:: rx()
2017-04-27 07:55:22 +02:00
%End
2015-11-18 16:24:08 +11:00
void setY( double y );
2017-04-27 07:55:22 +02:00
%Docstring
Sets the point's y-coordinate.
2017-04-30 16:51:18 +02:00
.. seealso:: y()
.. seealso:: ry()
2017-04-27 07:55:22 +02:00
%End
2015-11-18 16:24:08 +11:00
void setZ( double z );
2017-04-27 07:55:22 +02:00
%Docstring
Sets the point's z-coordinate.
.. note::
calling this will have no effect if the point does not contain a z-dimension. Use addZValue() to
add a z value and force the point to have a z dimension.
2017-04-30 16:51:18 +02:00
.. seealso:: z()
.. seealso:: rz()
2017-04-27 07:55:22 +02:00
%End
2015-11-18 16:24:08 +11:00
void setM( double m );
2017-04-27 07:55:22 +02:00
%Docstring
Sets the point's m-value.
.. note::
calling this will have no effect if the point does not contain a m-dimension. Use addMValue() to
add a m value and force the point to have an m dimension.
2017-04-30 16:51:18 +02:00
.. seealso:: m()
.. seealso:: rm()
2017-04-27 07:55:22 +02:00
%End
2015-11-18 16:24:08 +11:00
2015-12-15 22:36:49 +11:00
QPointF toQPointF() const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the point as a QPointF.
.. versionadded:: 2.14
:rtype: QPointF
%End
2015-12-15 22:36:49 +11:00
2016-11-05 20:11:15 +10:00
double distance( double x, double y ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the distance between this point and a specified x, y coordinate. In certain
cases it may be more appropriate to call the faster distanceSquared() method, e.g.,
when comparing distances.
.. versionadded:: 3.0
2017-04-30 16:51:18 +02:00
.. seealso:: distanceSquared()
2017-04-27 07:55:22 +02:00
:rtype: float
%End
2017-06-01 12:18:43 +02:00
double distance( const QgsPoint &other ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the 2D distance between this point and another point. In certain
cases it may be more appropriate to call the faster distanceSquared() method, e.g.,
when comparing distances.
.. versionadded:: 3.0
:rtype: float
%End
2016-11-05 20:11:15 +10:00
double distanceSquared( double x, double y ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the squared distance between this point a specified x, y coordinate. Calling
this is faster than calling distance(), and may be useful in use cases such as comparing
distances where the extra expense of calling distance() is not required.
2017-04-30 16:51:18 +02:00
.. seealso:: distance()
2017-04-27 07:55:22 +02:00
.. versionadded:: 3.0
:rtype: float
%End
2017-06-01 12:18:43 +02:00
double distanceSquared( const QgsPoint &other ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the squared distance between this point another point. Calling
this is faster than calling distance(), and may be useful in use cases such as comparing
distances where the extra expense of calling distance() is not required.
2017-04-30 16:51:18 +02:00
.. seealso:: distance()
2017-04-27 07:55:22 +02:00
.. versionadded:: 3.0
:rtype: float
%End
2016-11-05 20:11:15 +10:00
2017-02-10 20:13:10 +01:00
double distance3D( double x, double y, double z ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the 3D distance between this point and a specified x, y, z coordinate. In certain
cases it may be more appropriate to call the faster distanceSquared() method, e.g.,
when comparing distances.
.. versionadded:: 3.0
2017-04-30 16:51:18 +02:00
.. seealso:: distanceSquared()
2017-04-27 07:55:22 +02:00
:rtype: float
%End
2017-06-01 12:18:43 +02:00
double distance3D( const QgsPoint &other ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the 3D distance between this point and another point. In certain
cases it may be more appropriate to call the faster distanceSquared() method, e.g.,
when comparing distances.
.. versionadded:: 3.0
:rtype: float
%End
2017-02-10 20:13:10 +01:00
double distanceSquared3D( double x, double y, double z ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the 3D squared distance between this point a specified x, y, z coordinate. Calling
this is faster than calling distance(), and may be useful in use cases such as comparing
distances where the extra expense of calling distance() is not required.
2017-04-30 16:51:18 +02:00
.. seealso:: distance()
2017-04-27 07:55:22 +02:00
.. versionadded:: 3.0
:rtype: float
%End
2017-06-01 12:18:43 +02:00
double distanceSquared3D( const QgsPoint &other ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the 3D squared distance between this point another point. Calling
this is faster than calling distance(), and may be useful in use cases such as comparing
distances where the extra expense of calling distance() is not required.
2017-04-30 16:51:18 +02:00
.. seealso:: distance()
2017-04-27 07:55:22 +02:00
.. versionadded:: 3.0
:rtype: float
%End
2017-06-01 12:18:43 +02:00
double azimuth( const QgsPoint &other ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Calculates azimuth between this point and other one (clockwise in degree, starting from north)
.. versionadded:: 3.0
:rtype: float
%End
2017-02-10 20:13:10 +01:00
2017-06-01 12:18:43 +02:00
double inclination( const QgsPoint &other ) const;
2017-05-13 09:29:50 +02:00
%Docstring
Calculates inclination between this point and other one (starting from zenith = 0 to nadir = 180. Horizon = 90)
Returns 90.0 if the distance between this point and other one is equal to 0 (same point).
.. versionadded:: 3.0
:rtype: float
%End
2017-06-01 12:18:43 +02:00
QgsPoint project( double distance, double azimuth, double inclination = 90.0 ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns a new point which correspond to this point projected by a specified distance
with specified angles (azimuth and inclination).
M value is preserved.
\param distance distance to project
\param azimuth angle to project in X Y, clockwise in degrees starting from north
\param inclination angle to project in Z (3D)
:return: The point projected. If a 2D point is projected a 3D point will be returned except if
inclination is 90. A 3D point is always returned if a 3D point is projected.
Example:
\code{.py}
2017-06-01 12:18:43 +02:00
p = QgsPoint( 1, 2 ) # 2D point
2017-04-27 07:55:22 +02:00
pr = p.project ( 1, 0 )
# pr is a 2D point: 'Point (1 3)'
pr = p.project ( 1, 0, 90 )
# pr is a 2D point: 'Point (1 3)'
pr = p.project (1, 0, 0 )
# pr is a 3D point: 'PointZ (1 2 1)'
2017-06-01 12:18:43 +02:00
p = QgsPoint( QgsWkbTypes.PointZ, 1, 2, 2 ) # 3D point
2017-04-27 07:55:22 +02:00
pr = p.project ( 1, 0 )
# pr is a 3D point: 'PointZ (1 3 2)'
pr = p.project ( 1, 0, 90 )
# pr is a 3D point: 'PointZ (1 3 2)'
pr = p.project (1, 0, 0 )
# pr is a 3D point: 'PointZ (1 2 3)'
\endcode
.. versionadded:: 3.0
2017-06-01 12:18:43 +02:00
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
2017-01-28 23:29:25 +01:00
2017-06-01 12:18:43 +02:00
QgsVector operator-( const QgsPoint &p ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Calculates the vector obtained by subtracting a point from this point.
.. versionadded:: 3.0
:rtype: QgsVector
%End
2016-12-08 17:43:33 +10:00
2017-06-01 12:18:43 +02:00
QgsPoint &operator+=( QgsVector v );
2017-04-27 07:55:22 +02:00
%Docstring
Adds a vector to this point in place.
.. versionadded:: 3.0
2017-06-01 12:18:43 +02:00
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
2016-12-08 17:43:33 +10:00
2017-06-01 12:18:43 +02:00
QgsPoint &operator-=( QgsVector v );
2017-04-27 07:55:22 +02:00
%Docstring
Subtracts a vector from this point in place.
.. versionadded:: 3.0
2017-06-01 12:18:43 +02:00
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
2016-12-08 17:43:33 +10:00
2017-06-01 12:18:43 +02:00
QgsPoint operator+( QgsVector v ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Adds a vector to this point.
.. versionadded:: 3.0
2017-06-01 12:18:43 +02:00
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
2016-12-08 17:43:33 +10:00
2017-06-01 12:18:43 +02:00
QgsPoint operator-( QgsVector v ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Subtracts a vector from this point.
.. versionadded:: 3.0
2017-06-01 12:18:43 +02:00
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
2016-12-08 17:43:33 +10:00
2017-04-27 07:55:22 +02:00
virtual bool isEmpty() const;
2016-02-21 16:26:45 +11:00
virtual QgsRectangle boundingBox() const;
2015-11-18 16:24:08 +11:00
virtual QString geometryType() const;
virtual int dimension() const;
2017-06-01 12:18:43 +02:00
virtual QgsPoint *clone() const /Factory/;
2017-04-27 07:55:22 +02:00
virtual void clear();
virtual bool fromWkb( QgsConstWkbPtr &wkb );
virtual bool fromWkt( const QString &wkt );
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 void draw( QPainter &p ) const;
virtual void transform( const QgsCoordinateTransform &ct, QgsCoordinateTransform::TransformDirection d = QgsCoordinateTransform::ForwardTransform,
2016-06-29 09:22:23 +10:00
bool transformZ = false );
2017-04-27 07:55:22 +02:00
virtual void transform( const QTransform &t );
virtual QgsCoordinateSequence coordinateSequence() const;
2016-10-26 17:14:51 +10:00
virtual int nCoordinates() const;
2017-04-27 07:55:22 +02:00
virtual QgsAbstractGeometry *boundary() const /Factory/;
2015-11-18 16:24:08 +11:00
2017-06-01 12:18:43 +02:00
virtual bool insertVertex( QgsVertexId position, const QgsPoint &vertex );
virtual bool moveVertex( QgsVertexId position, const QgsPoint &newPos );
2016-02-02 19:46:18 +11:00
virtual bool deleteVertex( QgsVertexId position );
2015-11-18 16:24:08 +11:00
2017-06-01 12:18:43 +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;
2017-06-01 12:18:43 +02:00
virtual bool nextVertex( QgsVertexId &id, QgsPoint &vertex /Out/ ) const;
2015-11-18 16:24:08 +11:00
2017-04-27 07:55:22 +02:00
virtual double vertexAngle( QgsVertexId vertex ) const;
%Docstring
Angle undefined. Always returns 0.0
\param vertex the vertex id
:return: 0.0*
:rtype: float
%End
virtual int vertexCount( int /*part*/ = 0, int /*ring*/ = 0 ) const;
2016-01-28 10:30:06 +01:00
virtual int ringCount( int /*part*/ = 0 ) const;
2015-11-18 16:24:08 +11:00
virtual int partCount() const;
2017-06-01 12:18:43 +02:00
virtual QgsPoint vertexAt( QgsVertexId /*id*/ ) const;
2015-11-18 16:24:08 +11:00
virtual bool addZValue( double zValue = 0 );
virtual bool addMValue( double mValue = 0 );
2015-12-01 16:33:44 +11:00
virtual bool dropZValue();
virtual bool dropMValue();
2016-08-04 09:10:08 +02:00
virtual bool convertTo( QgsWkbTypes::Type type );
2015-12-01 16:33:44 +11:00
2017-04-27 07:55:22 +02:00
2015-05-15 15:41:56 +02:00
};
2017-04-27 07:55:22 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
2017-06-03 10:52:28 +02:00
* src/core/geometry/qgspoint.h *
2017-04-27 07:55:22 +02:00
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/