QGIS/python/core/geometry/qgspoint.sip

401 lines
12 KiB
Plaintext
Raw Normal View History

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 *
************************************************************************/
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
#include "qgspoint.h"
2017-04-27 07:55:22 +02:00
%End
public:
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 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.
%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
explicit QgsPoint( const QgsPointXY &p );
2017-04-27 07:55:22 +02:00
%Docstring
Construct a QgsPoint from a QgsPointXY object
2017-04-27 07:55:22 +02:00
%End
explicit QgsPoint( QPointF p );
2017-04-27 07:55:22 +02:00
%Docstring
Construct a QgsPoint from a QPointF
2017-04-27 07:55:22 +02:00
%End
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
{
sipCpp = new sipQgsPoint( a0, a1, a2, a3, a4 );
2017-04-27 07:55:22 +02:00
}
%End
bool operator==( const QgsPoint &pt ) const;
bool operator!=( const QgsPoint &pt ) const;
2017-04-27 07:55:22 +02:00
%Docstring
:rtype: bool
%End
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
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
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
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
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
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
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
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
QPointF toQPointF() const;
2017-04-27 07:55:22 +02:00
%Docstring
Returns the point as a QPointF.
.. versionadded:: 2.14
:rtype: QPointF
%End
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
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
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
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
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
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
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
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
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
double inclination( const QgsPoint &other ) const;
%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
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}
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)'
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
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
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
QgsPoint &operator+=( QgsVector v );
2017-04-27 07:55:22 +02:00
%Docstring
Adds a vector to this point in place.
.. versionadded:: 3.0
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
QgsPoint &operator-=( QgsVector v );
2017-04-27 07:55:22 +02:00
%Docstring
Subtracts a vector from this point in place.
.. versionadded:: 3.0
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
QgsPoint operator+( QgsVector v ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Adds a vector to this point.
.. versionadded:: 3.0
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
QgsPoint operator-( QgsVector v ) const;
2017-04-27 07:55:22 +02:00
%Docstring
Subtracts a vector from this point.
.. versionadded:: 3.0
:rtype: QgsPoint
2017-04-27 07:55:22 +02:00
%End
2017-04-27 07:55:22 +02:00
virtual bool isEmpty() const;
virtual QgsRectangle boundingBox() const;
virtual QString geometryType() const;
virtual int dimension() const;
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,
bool transformZ = false );
2017-04-27 07:55:22 +02:00
virtual void transform( const QTransform &t );
virtual QgsCoordinateSequence coordinateSequence() const;
virtual int nCoordinates() const;
2017-04-27 07:55:22 +02:00
virtual QgsAbstractGeometry *boundary() const /Factory/;
virtual bool insertVertex( QgsVertexId position, const QgsPoint &vertex );
virtual bool moveVertex( QgsVertexId position, const QgsPoint &newPos );
virtual bool deleteVertex( QgsVertexId position );
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 nextVertex( QgsVertexId &id, QgsPoint &vertex /Out/ ) const;
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;
virtual int partCount() const;
virtual QgsPoint vertexAt( QgsVertexId /*id*/ ) const;
virtual bool addZValue( double zValue = 0 );
virtual bool addMValue( double mValue = 0 );
virtual bool dropZValue();
virtual bool dropMValue();
virtual bool convertTo( QgsWkbTypes::Type type );
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 *
************************************************************************/