mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-06 00:03:16 -05:00
Hold GIL for more methods
This commit is contained in:
parent
c3159d5a28
commit
519c32a3ff
@ -229,7 +229,7 @@ It is NOT normalized.
|
|||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void normalize();
|
void normalize() /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Normalize the box so it has non-negative width/height/depth.
|
Normalize the box so it has non-negative width/height/depth.
|
||||||
%End
|
%End
|
||||||
@ -273,7 +273,7 @@ Returns the center of the box as a vector.
|
|||||||
Returns the volume of the box.
|
Returns the volume of the box.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QgsBox3D intersect( const QgsBox3D &other ) const;
|
QgsBox3D intersect( const QgsBox3D &other ) const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the intersection of this box and another 3D box.
|
Returns the intersection of this box and another 3D box.
|
||||||
%End
|
%End
|
||||||
@ -293,17 +293,17 @@ If the box is not normalized, this returns ``False``.
|
|||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
bool intersects( const QgsBox3D &other ) const;
|
bool intersects( const QgsBox3D &other ) const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns ``True`` if box intersects with another box.
|
Returns ``True`` if box intersects with another box.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
bool contains( const QgsBox3D &other ) const;
|
bool contains( const QgsBox3D &other ) const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns ``True`` when box contains other box.
|
Returns ``True`` when box contains other box.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
bool contains( const QgsPoint &point ) const;
|
bool contains( const QgsPoint &point ) const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns ``True`` when box contains a ``point``.
|
Returns ``True`` when box contains a ``point``.
|
||||||
|
|
||||||
@ -311,7 +311,7 @@ If the point is a 2D point (no z-coordinate), then the containment test
|
|||||||
will be performed on the x/y extent of the box only.
|
will be performed on the x/y extent of the box only.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
bool contains( double x, double y, double z ) const;
|
bool contains( double x, double y, double z ) const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns ``True`` when box contains a point (``x``, ``y``, ``z``).
|
Returns ``True`` when box contains a point (``x``, ``y``, ``z``).
|
||||||
A point on the border of the box will also return ``True``
|
A point on the border of the box will also return ``True``
|
||||||
@ -322,26 +322,26 @@ will be performed on the x/y extent of the box only.
|
|||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void combineWith( const QgsBox3D &box );
|
void combineWith( const QgsBox3D &box ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Expands the bbox so that it covers both the original rectangle and the given rectangle.
|
Expands the bbox so that it covers both the original rectangle and the given rectangle.
|
||||||
|
|
||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void combineWith( double x, double y, double z );
|
void combineWith( double x, double y, double z ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Expands the bbox so that it covers both the original rectangle and the given point.
|
Expands the bbox so that it covers both the original rectangle and the given point.
|
||||||
|
|
||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QgsRectangle toRectangle() const;
|
QgsRectangle toRectangle() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Converts the box to a 2D rectangle.
|
Converts the box to a 2D rectangle.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
double distanceTo( const QVector3D &point ) const;
|
double distanceTo( const QVector3D &point ) const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the smallest distance between the box and the point ``point``
|
Returns the smallest distance between the box and the point ``point``
|
||||||
(returns 0 if the point is inside the box)
|
(returns 0 if the point is inside the box)
|
||||||
@ -349,9 +349,9 @@ Returns the smallest distance between the box and the point ``point``
|
|||||||
.. versionadded:: 3.18
|
.. versionadded:: 3.18
|
||||||
%End
|
%End
|
||||||
|
|
||||||
bool operator==( const QgsBox3D &other ) const;
|
bool operator==( const QgsBox3D &other ) const /HoldGIL/;
|
||||||
|
|
||||||
void scale( double scaleFactor, const QgsPoint ¢er = QgsPoint() );
|
void scale( double scaleFactor, const QgsPoint ¢er = QgsPoint() ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Scale the rectangle around a ``center`` :py:class:`QgsPoint`.
|
Scale the rectangle around a ``center`` :py:class:`QgsPoint`.
|
||||||
|
|
||||||
@ -360,14 +360,14 @@ If no ``center`` point is specified then the current center of the box will be u
|
|||||||
.. versionadded:: 3.26
|
.. versionadded:: 3.26
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void scale( double scaleFactor, double centerX, double centerY, double centerZ );
|
void scale( double scaleFactor, double centerX, double centerY, double centerZ ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Scale the rectangle around a center coordinates.
|
Scale the rectangle around a center coordinates.
|
||||||
|
|
||||||
.. versionadded:: 3.26
|
.. versionadded:: 3.26
|
||||||
%End
|
%End
|
||||||
|
|
||||||
bool isNull() const;
|
bool isNull() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Test if the box is null (all coordinates NaN or after call to :py:func:`~QgsBox3D.setMinimal`).
|
Test if the box is null (all coordinates NaN or after call to :py:func:`~QgsBox3D.setMinimal`).
|
||||||
A null box is also an empty box.
|
A null box is also an empty box.
|
||||||
@ -375,7 +375,7 @@ A null box is also an empty box.
|
|||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
bool isEmpty() const;
|
bool isEmpty() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns ``True`` if the box is empty.
|
Returns ``True`` if the box is empty.
|
||||||
An empty box may still be non-null if it contains valid information (e.g. bounding box of a point).
|
An empty box may still be non-null if it contains valid information (e.g. bounding box of a point).
|
||||||
@ -383,7 +383,7 @@ An empty box may still be non-null if it contains valid information (e.g. boundi
|
|||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QString toString( int precision = 16 ) const;
|
QString toString( int precision = 16 ) const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns a string representation of form xmin,ymin,zmin : xmax,ymax,zmax
|
Returns a string representation of form xmin,ymin,zmin : xmax,ymax,zmax
|
||||||
Coordinates will be truncated to the specified precision.
|
Coordinates will be truncated to the specified precision.
|
||||||
@ -392,18 +392,18 @@ If the specified precision is less than 0, a suitable minimum precision is used.
|
|||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QVector< QgsVector3D > corners() const;
|
QVector< QgsVector3D > corners() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns an array of all box corners as 3D vectors.
|
Returns an array of all box corners as 3D vectors.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QgsBox3D operator-( const QgsVector3D &v ) const;
|
QgsBox3D operator-( const QgsVector3D &v ) const /HoldGIL/;
|
||||||
|
|
||||||
QgsBox3D operator+( const QgsVector3D &v ) const;
|
QgsBox3D operator+( const QgsVector3D &v ) const /HoldGIL/;
|
||||||
|
|
||||||
QgsBox3D &operator-=( const QgsVector3D &v );
|
QgsBox3D &operator-=( const QgsVector3D &v ) /HoldGIL/;
|
||||||
|
|
||||||
QgsBox3D &operator+=( const QgsVector3D &v );
|
QgsBox3D &operator+=( const QgsVector3D &v ) /HoldGIL/;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -48,16 +48,16 @@ Constructor for a oriented box, with a specified center and half axes matrix.
|
|||||||
Constructs an oriented box from an axis-aligned bounding box.
|
Constructs an oriented box from an axis-aligned bounding box.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
bool operator==( const QgsOrientedBox3D &other ) const;
|
bool operator==( const QgsOrientedBox3D &other ) const /HoldGIL/;
|
||||||
|
|
||||||
bool operator!=( const QgsOrientedBox3D &other ) const;
|
bool operator!=( const QgsOrientedBox3D &other ) const /HoldGIL/;
|
||||||
|
|
||||||
bool isNull() const;
|
bool isNull() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns ``True`` if the box is a null box.
|
Returns ``True`` if the box is a null box.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
double centerX() const;
|
double centerX() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the center x-coordinate.
|
Returns the center x-coordinate.
|
||||||
|
|
||||||
@ -66,7 +66,7 @@ Returns the center x-coordinate.
|
|||||||
.. seealso:: :py:func:`centerZ`
|
.. seealso:: :py:func:`centerZ`
|
||||||
%End
|
%End
|
||||||
|
|
||||||
double centerY() const;
|
double centerY() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the center y-coordinate.
|
Returns the center y-coordinate.
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ Returns the center y-coordinate.
|
|||||||
.. seealso:: :py:func:`centerZ`
|
.. seealso:: :py:func:`centerZ`
|
||||||
%End
|
%End
|
||||||
|
|
||||||
double centerZ() const;
|
double centerZ() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the center z-coordinate.
|
Returns the center z-coordinate.
|
||||||
|
|
||||||
@ -84,33 +84,33 @@ Returns the center z-coordinate.
|
|||||||
.. seealso:: :py:func:`centerY`
|
.. seealso:: :py:func:`centerY`
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QgsVector3D center() const;
|
QgsVector3D center() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the vector to the center of the box.
|
Returns the vector to the center of the box.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
|
|
||||||
QList< double > halfAxesList() const /PyName=halfAxes/;
|
QList< double > halfAxesList() const /HoldGIL,PyName=halfAxes/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the half axes matrix;
|
Returns the half axes matrix;
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QgsBox3D extent() const;
|
QgsBox3D extent() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the overall bounding box of the object.
|
Returns the overall bounding box of the object.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QVector< QgsVector3D > corners() const;
|
QVector< QgsVector3D > corners() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns an array of all corners as 3D vectors.
|
Returns an array of all corners as 3D vectors.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QgsVector3D size() const;
|
QgsVector3D size() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns size of sides of the box.
|
Returns size of sides of the box.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QgsBox3D reprojectedExtent( const QgsCoordinateTransform &ct ) const throw( QgsCsException );
|
QgsBox3D reprojectedExtent( const QgsCoordinateTransform &ct ) const throw( QgsCsException ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Reprojects corners of this box using the given coordinate ``transform``
|
Reprojects corners of this box using the given coordinate ``transform``
|
||||||
and returns axis-aligned box containing reprojected corners.
|
and returns axis-aligned box containing reprojected corners.
|
||||||
@ -118,7 +118,7 @@ and returns axis-aligned box containing reprojected corners.
|
|||||||
:raises QgsCsException:
|
:raises QgsCsException:
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QgsOrientedBox3D transformed( const QgsMatrix4x4 &transform ) const;
|
QgsOrientedBox3D transformed( const QgsMatrix4x4 &transform ) const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns box transformed by a 4x4 matrix.
|
Returns box transformed by a 4x4 matrix.
|
||||||
%End
|
%End
|
||||||
|
|||||||
@ -35,105 +35,105 @@ Constructs a vector from given coordinates
|
|||||||
%Docstring
|
%Docstring
|
||||||
Constructs a vector from single-precision QVector3D
|
Constructs a vector from single-precision QVector3D
|
||||||
%End
|
%End
|
||||||
bool isNull() const;
|
bool isNull() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns ``True`` if all three coordinates are zero
|
Returns ``True`` if all three coordinates are zero
|
||||||
%End
|
%End
|
||||||
|
|
||||||
double x() const;
|
double x() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns X coordinate
|
Returns X coordinate
|
||||||
%End
|
%End
|
||||||
double y() const;
|
double y() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns Y coordinate
|
Returns Y coordinate
|
||||||
%End
|
%End
|
||||||
double z() const;
|
double z() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns Z coordinate
|
Returns Z coordinate
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void setX( double x );
|
void setX( double x ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Sets X coordinate
|
Sets X coordinate
|
||||||
|
|
||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void setY( double y );
|
void setY( double y ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Sets Y coordinate
|
Sets Y coordinate
|
||||||
|
|
||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void setZ( double z );
|
void setZ( double z ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Sets Z coordinate
|
Sets Z coordinate
|
||||||
|
|
||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void set( double x, double y, double z );
|
void set( double x, double y, double z ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Sets vector coordinates
|
Sets vector coordinates
|
||||||
%End
|
%End
|
||||||
|
|
||||||
bool operator==( const QgsVector3D &other ) const;
|
bool operator==( const QgsVector3D &other ) const /HoldGIL/;
|
||||||
bool operator!=( const QgsVector3D &other ) const;
|
bool operator!=( const QgsVector3D &other ) const /HoldGIL/;
|
||||||
|
|
||||||
QgsVector3D operator+( const QgsVector3D &other ) const;
|
QgsVector3D operator+( const QgsVector3D &other ) const /HoldGIL/;
|
||||||
|
|
||||||
QgsVector3D operator-( const QgsVector3D &other ) const;
|
QgsVector3D operator-( const QgsVector3D &other ) const /HoldGIL/;
|
||||||
|
|
||||||
QgsVector3D operator *( const double factor ) const;
|
QgsVector3D operator *( const double factor ) const /HoldGIL/;
|
||||||
|
|
||||||
QgsVector3D operator /( const double factor ) const;
|
QgsVector3D operator /( const double factor ) const /HoldGIL/;
|
||||||
|
|
||||||
static double dotProduct( const QgsVector3D &v1, const QgsVector3D &v2 );
|
static double dotProduct( const QgsVector3D &v1, const QgsVector3D &v2 ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the dot product of two vectors
|
Returns the dot product of two vectors
|
||||||
%End
|
%End
|
||||||
|
|
||||||
static QgsVector3D crossProduct( const QgsVector3D &v1, const QgsVector3D &v2 );
|
static QgsVector3D crossProduct( const QgsVector3D &v1, const QgsVector3D &v2 ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the cross product of two vectors
|
Returns the cross product of two vectors
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QgsVector3D projectOnto( const QgsVector3D &other );
|
QgsVector3D projectOnto( const QgsVector3D &other ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Projects this vector onto an ``other`` vector.
|
Projects this vector onto an ``other`` vector.
|
||||||
|
|
||||||
.. versionadded:: 3.34
|
.. versionadded:: 3.34
|
||||||
%End
|
%End
|
||||||
|
|
||||||
double length() const;
|
double length() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the length of the vector
|
Returns the length of the vector
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void normalize();
|
void normalize() /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Normalizes the current vector in place.
|
Normalizes the current vector in place.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
double distance( const QgsVector3D &other ) const;
|
double distance( const QgsVector3D &other ) const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the distance with the ``other`` :py:class:`QgsVector3`
|
Returns the distance with the ``other`` QgsVector3D
|
||||||
%End
|
%End
|
||||||
|
|
||||||
static QgsVector3D perpendicularPoint( const QgsVector3D &v1, const QgsVector3D &v2, const QgsVector3D &vp );
|
static QgsVector3D perpendicularPoint( const QgsVector3D &v1, const QgsVector3D &v2, const QgsVector3D &vp ) /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns the perpendicular point of vector ``vp`` from [``v1`` - ``v2``]
|
Returns the perpendicular point of vector ``vp`` from [``v1`` - ``v2``]
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QString toString( int precision = 17 ) const;
|
QString toString( int precision = 17 ) const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Returns a string representation of the 3D vector.
|
Returns a string representation of the 3D vector.
|
||||||
Members will be truncated to the specified ``precision``.
|
Members will be truncated to the specified ``precision``.
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QVector3D toVector3D() const;
|
QVector3D toVector3D() const /HoldGIL/;
|
||||||
%Docstring
|
%Docstring
|
||||||
Converts the current object to QVector3D
|
Converts the current object to QVector3D
|
||||||
|
|
||||||
|
|||||||
@ -237,7 +237,7 @@ class CORE_EXPORT QgsBox3D
|
|||||||
/**
|
/**
|
||||||
* Normalize the box so it has non-negative width/height/depth.
|
* Normalize the box so it has non-negative width/height/depth.
|
||||||
*/
|
*/
|
||||||
void normalize();
|
void normalize() SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the width of the box.
|
* Returns the width of the box.
|
||||||
@ -275,7 +275,7 @@ class CORE_EXPORT QgsBox3D
|
|||||||
/**
|
/**
|
||||||
* Returns the intersection of this box and another 3D box.
|
* Returns the intersection of this box and another 3D box.
|
||||||
*/
|
*/
|
||||||
QgsBox3D intersect( const QgsBox3D &other ) const;
|
QgsBox3D intersect( const QgsBox3D &other ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns TRUE if the box can be considered a 2-dimensional box, i.e.
|
* Returns TRUE if the box can be considered a 2-dimensional box, i.e.
|
||||||
@ -295,12 +295,12 @@ class CORE_EXPORT QgsBox3D
|
|||||||
/**
|
/**
|
||||||
* Returns TRUE if box intersects with another box.
|
* Returns TRUE if box intersects with another box.
|
||||||
*/
|
*/
|
||||||
bool intersects( const QgsBox3D &other ) const;
|
bool intersects( const QgsBox3D &other ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns TRUE when box contains other box.
|
* Returns TRUE when box contains other box.
|
||||||
*/
|
*/
|
||||||
bool contains( const QgsBox3D &other ) const;
|
bool contains( const QgsBox3D &other ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns TRUE when box contains a \a point.
|
* Returns TRUE when box contains a \a point.
|
||||||
@ -308,7 +308,7 @@ class CORE_EXPORT QgsBox3D
|
|||||||
* If the point is a 2D point (no z-coordinate), then the containment test
|
* If the point is a 2D point (no z-coordinate), then the containment test
|
||||||
* will be performed on the x/y extent of the box only.
|
* will be performed on the x/y extent of the box only.
|
||||||
*/
|
*/
|
||||||
bool contains( const QgsPoint &point ) const;
|
bool contains( const QgsPoint &point ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns TRUE when box contains a point (\a x, \a y, \a z).
|
* Returns TRUE when box contains a point (\a x, \a y, \a z).
|
||||||
@ -319,26 +319,26 @@ class CORE_EXPORT QgsBox3D
|
|||||||
*
|
*
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
bool contains( double x, double y, double z ) const;
|
bool contains( double x, double y, double z ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Expands the bbox so that it covers both the original rectangle and the given rectangle.
|
* Expands the bbox so that it covers both the original rectangle and the given rectangle.
|
||||||
*
|
*
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
void combineWith( const QgsBox3D &box );
|
void combineWith( const QgsBox3D &box ) SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Expands the bbox so that it covers both the original rectangle and the given point.
|
* Expands the bbox so that it covers both the original rectangle and the given point.
|
||||||
*
|
*
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
void combineWith( double x, double y, double z );
|
void combineWith( double x, double y, double z ) SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Converts the box to a 2D rectangle.
|
* Converts the box to a 2D rectangle.
|
||||||
*/
|
*/
|
||||||
QgsRectangle toRectangle() const { return mBounds2d; }
|
QgsRectangle toRectangle() const SIP_HOLDGIL { return mBounds2d; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the smallest distance between the box and the point \a point
|
* Returns the smallest distance between the box and the point \a point
|
||||||
@ -346,9 +346,9 @@ class CORE_EXPORT QgsBox3D
|
|||||||
*
|
*
|
||||||
* \since QGIS 3.18
|
* \since QGIS 3.18
|
||||||
*/
|
*/
|
||||||
double distanceTo( const QVector3D &point ) const;
|
double distanceTo( const QVector3D &point ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
bool operator==( const QgsBox3D &other ) const;
|
bool operator==( const QgsBox3D &other ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Scale the rectangle around a \a center QgsPoint.
|
* Scale the rectangle around a \a center QgsPoint.
|
||||||
@ -357,14 +357,14 @@ class CORE_EXPORT QgsBox3D
|
|||||||
*
|
*
|
||||||
* \since QGIS 3.26
|
* \since QGIS 3.26
|
||||||
*/
|
*/
|
||||||
void scale( double scaleFactor, const QgsPoint ¢er = QgsPoint() );
|
void scale( double scaleFactor, const QgsPoint ¢er = QgsPoint() ) SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Scale the rectangle around a center coordinates.
|
* Scale the rectangle around a center coordinates.
|
||||||
*
|
*
|
||||||
* \since QGIS 3.26
|
* \since QGIS 3.26
|
||||||
*/
|
*/
|
||||||
void scale( double scaleFactor, double centerX, double centerY, double centerZ );
|
void scale( double scaleFactor, double centerX, double centerY, double centerZ ) SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test if the box is null (all coordinates NaN or after call to setMinimal()).
|
* Test if the box is null (all coordinates NaN or after call to setMinimal()).
|
||||||
@ -372,7 +372,7 @@ class CORE_EXPORT QgsBox3D
|
|||||||
*
|
*
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
bool isNull() const;
|
bool isNull() const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns TRUE if the box is empty.
|
* Returns TRUE if the box is empty.
|
||||||
@ -380,7 +380,7 @@ class CORE_EXPORT QgsBox3D
|
|||||||
*
|
*
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
bool isEmpty() const;
|
bool isEmpty() const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a string representation of form xmin,ymin,zmin : xmax,ymax,zmax
|
* Returns a string representation of form xmin,ymin,zmin : xmax,ymax,zmax
|
||||||
@ -389,36 +389,36 @@ class CORE_EXPORT QgsBox3D
|
|||||||
*
|
*
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
QString toString( int precision = 16 ) const;
|
QString toString( int precision = 16 ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an array of all box corners as 3D vectors.
|
* Returns an array of all box corners as 3D vectors.
|
||||||
*/
|
*/
|
||||||
QVector< QgsVector3D > corners() const;
|
QVector< QgsVector3D > corners() const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a box offset from this one in the direction of the reversed vector.
|
* Returns a box offset from this one in the direction of the reversed vector.
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
QgsBox3D operator-( const QgsVector3D &v ) const;
|
QgsBox3D operator-( const QgsVector3D &v ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a box offset from this one in the direction of the vector.
|
* Returns a box offset from this one in the direction of the vector.
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
QgsBox3D operator+( const QgsVector3D &v ) const;
|
QgsBox3D operator+( const QgsVector3D &v ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Moves this box in the direction of the reversed vector.
|
* Moves this box in the direction of the reversed vector.
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
QgsBox3D &operator-=( const QgsVector3D &v );
|
QgsBox3D &operator-=( const QgsVector3D &v ) SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Moves this box in the direction of the vector.
|
* Moves this box in the direction of the vector.
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
QgsBox3D &operator+=( const QgsVector3D &v );
|
QgsBox3D &operator+=( const QgsVector3D &v ) SIP_HOLDGIL;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|||||||
@ -64,7 +64,7 @@ class CORE_EXPORT QgsOrientedBox3D
|
|||||||
*/
|
*/
|
||||||
static QgsOrientedBox3D fromBox3D( const QgsBox3D &box );
|
static QgsOrientedBox3D fromBox3D( const QgsBox3D &box );
|
||||||
|
|
||||||
bool operator==( const QgsOrientedBox3D &other ) const
|
bool operator==( const QgsOrientedBox3D &other ) const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return qgsDoubleNear( mCenter[0], other.mCenter[0] )
|
return qgsDoubleNear( mCenter[0], other.mCenter[0] )
|
||||||
&& qgsDoubleNear( mCenter[1], other.mCenter[1] )
|
&& qgsDoubleNear( mCenter[1], other.mCenter[1] )
|
||||||
@ -80,7 +80,7 @@ class CORE_EXPORT QgsOrientedBox3D
|
|||||||
&& qgsDoubleNear( mHalfAxes[8], other.mHalfAxes[8] );
|
&& qgsDoubleNear( mHalfAxes[8], other.mHalfAxes[8] );
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator!=( const QgsOrientedBox3D &other ) const
|
bool operator!=( const QgsOrientedBox3D &other ) const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return !( *this == other );
|
return !( *this == other );
|
||||||
}
|
}
|
||||||
@ -88,7 +88,7 @@ class CORE_EXPORT QgsOrientedBox3D
|
|||||||
/**
|
/**
|
||||||
* Returns TRUE if the box is a null box.
|
* Returns TRUE if the box is a null box.
|
||||||
*/
|
*/
|
||||||
bool isNull() const;
|
bool isNull() const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the center x-coordinate.
|
* Returns the center x-coordinate.
|
||||||
@ -96,7 +96,7 @@ class CORE_EXPORT QgsOrientedBox3D
|
|||||||
* \see centerY()
|
* \see centerY()
|
||||||
* \see centerZ()
|
* \see centerZ()
|
||||||
*/
|
*/
|
||||||
double centerX() const { return mCenter[0]; }
|
double centerX() const SIP_HOLDGIL { return mCenter[0]; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the center y-coordinate.
|
* Returns the center y-coordinate.
|
||||||
@ -104,7 +104,7 @@ class CORE_EXPORT QgsOrientedBox3D
|
|||||||
* \see centerX()
|
* \see centerX()
|
||||||
* \see centerZ()
|
* \see centerZ()
|
||||||
*/
|
*/
|
||||||
double centerY() const { return mCenter[1]; }
|
double centerY() const SIP_HOLDGIL { return mCenter[1]; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the center z-coordinate.
|
* Returns the center z-coordinate.
|
||||||
@ -112,12 +112,12 @@ class CORE_EXPORT QgsOrientedBox3D
|
|||||||
* \see centerX()
|
* \see centerX()
|
||||||
* \see centerY()
|
* \see centerY()
|
||||||
*/
|
*/
|
||||||
double centerZ() const { return mCenter[2]; }
|
double centerZ() const SIP_HOLDGIL { return mCenter[2]; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the vector to the center of the box.
|
* Returns the vector to the center of the box.
|
||||||
*/
|
*/
|
||||||
QgsVector3D center() const { return QgsVector3D( mCenter[0], mCenter[1], mCenter[2] ); }
|
QgsVector3D center() const SIP_HOLDGIL { return QgsVector3D( mCenter[0], mCenter[1], mCenter[2] ); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the half axes matrix;
|
* Returns the half axes matrix;
|
||||||
@ -127,34 +127,34 @@ class CORE_EXPORT QgsOrientedBox3D
|
|||||||
/**
|
/**
|
||||||
* Returns the half axes matrix;
|
* Returns the half axes matrix;
|
||||||
*/
|
*/
|
||||||
QList< double > halfAxesList() const SIP_PYNAME( halfAxes );
|
QList< double > halfAxesList() const SIP_HOLDGIL SIP_PYNAME( halfAxes );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the overall bounding box of the object.
|
* Returns the overall bounding box of the object.
|
||||||
*/
|
*/
|
||||||
QgsBox3D extent() const;
|
QgsBox3D extent() const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an array of all corners as 3D vectors.
|
* Returns an array of all corners as 3D vectors.
|
||||||
*/
|
*/
|
||||||
QVector< QgsVector3D > corners() const;
|
QVector< QgsVector3D > corners() const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns size of sides of the box.
|
* Returns size of sides of the box.
|
||||||
*/
|
*/
|
||||||
QgsVector3D size() const;
|
QgsVector3D size() const SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reprojects corners of this box using the given coordinate \a transform
|
* Reprojects corners of this box using the given coordinate \a transform
|
||||||
* and returns axis-aligned box containing reprojected corners.
|
* and returns axis-aligned box containing reprojected corners.
|
||||||
* \throws QgsCsException
|
* \throws QgsCsException
|
||||||
*/
|
*/
|
||||||
QgsBox3D reprojectedExtent( const QgsCoordinateTransform &ct ) const SIP_THROW( QgsCsException );
|
QgsBox3D reprojectedExtent( const QgsCoordinateTransform &ct ) const SIP_THROW( QgsCsException ) SIP_HOLDGIL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns box transformed by a 4x4 matrix.
|
* Returns box transformed by a 4x4 matrix.
|
||||||
*/
|
*/
|
||||||
QgsOrientedBox3D transformed( const QgsMatrix4x4 &transform ) const;
|
QgsOrientedBox3D transformed( const QgsMatrix4x4 &transform ) const SIP_HOLDGIL;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|||||||
@ -43,35 +43,35 @@ class CORE_EXPORT QgsVector3D
|
|||||||
: mX( v.x() ), mY( v.y() ), mZ( v.z() ) {}
|
: mX( v.x() ), mY( v.y() ), mZ( v.z() ) {}
|
||||||
|
|
||||||
//! Returns TRUE if all three coordinates are zero
|
//! Returns TRUE if all three coordinates are zero
|
||||||
bool isNull() const { return mX == 0 && mY == 0 && mZ == 0; }
|
bool isNull() const SIP_HOLDGIL { return mX == 0 && mY == 0 && mZ == 0; }
|
||||||
|
|
||||||
//! Returns X coordinate
|
//! Returns X coordinate
|
||||||
double x() const { return mX; }
|
double x() const SIP_HOLDGIL { return mX; }
|
||||||
//! Returns Y coordinate
|
//! Returns Y coordinate
|
||||||
double y() const { return mY; }
|
double y() const SIP_HOLDGIL { return mY; }
|
||||||
//! Returns Z coordinate
|
//! Returns Z coordinate
|
||||||
double z() const { return mZ; }
|
double z() const SIP_HOLDGIL { return mZ; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets X coordinate
|
* Sets X coordinate
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
void setX( double x ) { mX = x; }
|
void setX( double x ) SIP_HOLDGIL { mX = x; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets Y coordinate
|
* Sets Y coordinate
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
void setY( double y ) { mY = y; }
|
void setY( double y ) SIP_HOLDGIL { mY = y; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets Z coordinate
|
* Sets Z coordinate
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
void setZ( double z ) { mZ = z; }
|
void setZ( double z ) SIP_HOLDGIL { mZ = z; }
|
||||||
|
|
||||||
//! Sets vector coordinates
|
//! Sets vector coordinates
|
||||||
void set( double x, double y, double z )
|
void set( double x, double y, double z ) SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
mX = x;
|
mX = x;
|
||||||
mY = y;
|
mY = y;
|
||||||
@ -79,48 +79,48 @@ class CORE_EXPORT QgsVector3D
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TODO c++20 - replace with = default
|
// TODO c++20 - replace with = default
|
||||||
bool operator==( const QgsVector3D &other ) const
|
bool operator==( const QgsVector3D &other ) const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return mX == other.mX && mY == other.mY && mZ == other.mZ;
|
return mX == other.mX && mY == other.mY && mZ == other.mZ;
|
||||||
}
|
}
|
||||||
bool operator!=( const QgsVector3D &other ) const
|
bool operator!=( const QgsVector3D &other ) const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return !operator==( other );
|
return !operator==( other );
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns sum of two vectors
|
//! Returns sum of two vectors
|
||||||
QgsVector3D operator+( const QgsVector3D &other ) const
|
QgsVector3D operator+( const QgsVector3D &other ) const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return QgsVector3D( mX + other.mX, mY + other.mY, mZ + other.mZ );
|
return QgsVector3D( mX + other.mX, mY + other.mY, mZ + other.mZ );
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns difference of two vectors
|
//! Returns difference of two vectors
|
||||||
QgsVector3D operator-( const QgsVector3D &other ) const
|
QgsVector3D operator-( const QgsVector3D &other ) const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return QgsVector3D( mX - other.mX, mY - other.mY, mZ - other.mZ );
|
return QgsVector3D( mX - other.mX, mY - other.mY, mZ - other.mZ );
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns a new vector multiplied by scalar
|
//! Returns a new vector multiplied by scalar
|
||||||
QgsVector3D operator *( const double factor ) const
|
QgsVector3D operator *( const double factor ) const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
|
|
||||||
return QgsVector3D( mX * factor, mY * factor, mZ * factor );
|
return QgsVector3D( mX * factor, mY * factor, mZ * factor );
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns a new vector divided by scalar
|
//! Returns a new vector divided by scalar
|
||||||
QgsVector3D operator /( const double factor ) const
|
QgsVector3D operator /( const double factor ) const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return QgsVector3D( mX / factor, mY / factor, mZ / factor );
|
return QgsVector3D( mX / factor, mY / factor, mZ / factor );
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns the dot product of two vectors
|
//! Returns the dot product of two vectors
|
||||||
static double dotProduct( const QgsVector3D &v1, const QgsVector3D &v2 )
|
static double dotProduct( const QgsVector3D &v1, const QgsVector3D &v2 ) SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return v1.x() * v2.x() + v1.y() * v2.y() + v1.z() * v2.z();
|
return v1.x() * v2.x() + v1.y() * v2.y() + v1.z() * v2.z();
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns the cross product of two vectors
|
//! Returns the cross product of two vectors
|
||||||
static QgsVector3D crossProduct( const QgsVector3D &v1, const QgsVector3D &v2 )
|
static QgsVector3D crossProduct( const QgsVector3D &v1, const QgsVector3D &v2 ) SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return QgsVector3D( v1.y() * v2.z() - v1.z() * v2.y(),
|
return QgsVector3D( v1.y() * v2.z() - v1.z() * v2.y(),
|
||||||
v1.z() * v2.x() - v1.x() * v2.z(),
|
v1.z() * v2.x() - v1.x() * v2.z(),
|
||||||
@ -132,7 +132,7 @@ class CORE_EXPORT QgsVector3D
|
|||||||
*
|
*
|
||||||
* \since QGIS 3.34
|
* \since QGIS 3.34
|
||||||
*/
|
*/
|
||||||
QgsVector3D projectOnto( const QgsVector3D &other )
|
QgsVector3D projectOnto( const QgsVector3D &other ) SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
const double bbDotProduct = other.mX * other.mX + other.mY * other.mY + other.mZ * other.mZ;
|
const double bbDotProduct = other.mX * other.mX + other.mY * other.mY + other.mZ * other.mZ;
|
||||||
const double abDotProduct = QgsVector3D::dotProduct( *this, other );
|
const double abDotProduct = QgsVector3D::dotProduct( *this, other );
|
||||||
@ -140,13 +140,13 @@ class CORE_EXPORT QgsVector3D
|
|||||||
}
|
}
|
||||||
|
|
||||||
//! Returns the length of the vector
|
//! Returns the length of the vector
|
||||||
double length() const
|
double length() const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return sqrt( mX * mX + mY * mY + mZ * mZ );
|
return sqrt( mX * mX + mY * mY + mZ * mZ );
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Normalizes the current vector in place.
|
//! Normalizes the current vector in place.
|
||||||
void normalize()
|
void normalize() SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
const double len = length();
|
const double len = length();
|
||||||
if ( !qgsDoubleNear( len, 0.0 ) )
|
if ( !qgsDoubleNear( len, 0.0 ) )
|
||||||
@ -157,8 +157,8 @@ class CORE_EXPORT QgsVector3D
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Returns the distance with the \a other QgsVector3
|
//! Returns the distance with the \a other QgsVector3D
|
||||||
double distance( const QgsVector3D &other ) const
|
double distance( const QgsVector3D &other ) const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
return std::sqrt( ( mX - other.x() ) * ( mX - other.x() ) +
|
return std::sqrt( ( mX - other.x() ) * ( mX - other.x() ) +
|
||||||
( mY - other.y() ) * ( mY - other.y() ) +
|
( mY - other.y() ) * ( mY - other.y() ) +
|
||||||
@ -166,7 +166,7 @@ class CORE_EXPORT QgsVector3D
|
|||||||
}
|
}
|
||||||
|
|
||||||
//! Returns the perpendicular point of vector \a vp from [\a v1 - \a v2]
|
//! Returns the perpendicular point of vector \a vp from [\a v1 - \a v2]
|
||||||
static QgsVector3D perpendicularPoint( const QgsVector3D &v1, const QgsVector3D &v2, const QgsVector3D &vp )
|
static QgsVector3D perpendicularPoint( const QgsVector3D &v1, const QgsVector3D &v2, const QgsVector3D &vp ) SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
const QgsVector3D d = ( v2 - v1 ) / v2.distance( v1 );
|
const QgsVector3D d = ( v2 - v1 ) / v2.distance( v1 );
|
||||||
const QgsVector3D v = vp - v2;
|
const QgsVector3D v = vp - v2;
|
||||||
@ -179,7 +179,7 @@ class CORE_EXPORT QgsVector3D
|
|||||||
* Returns a string representation of the 3D vector.
|
* Returns a string representation of the 3D vector.
|
||||||
* Members will be truncated to the specified \a precision.
|
* Members will be truncated to the specified \a precision.
|
||||||
*/
|
*/
|
||||||
QString toString( int precision = 17 ) const
|
QString toString( int precision = 17 ) const SIP_HOLDGIL
|
||||||
{
|
{
|
||||||
QString str = "Vector3D (";
|
QString str = "Vector3D (";
|
||||||
str += qgsDoubleToString( mX, precision );
|
str += qgsDoubleToString( mX, precision );
|
||||||
@ -196,7 +196,7 @@ class CORE_EXPORT QgsVector3D
|
|||||||
* \warning the conversion may decrease the accuracy (double to float values conversion)
|
* \warning the conversion may decrease the accuracy (double to float values conversion)
|
||||||
* \since QGIS 3.24
|
* \since QGIS 3.24
|
||||||
*/
|
*/
|
||||||
QVector3D toVector3D() const { return QVector3D( mX, mY, mZ ); }
|
QVector3D toVector3D() const SIP_HOLDGIL { return QVector3D( mX, mY, mZ ); }
|
||||||
|
|
||||||
#ifdef SIP_RUN
|
#ifdef SIP_RUN
|
||||||
SIP_PYOBJECT __repr__();
|
SIP_PYOBJECT __repr__();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user