QGIS API Documentation
3.14.0-Pi (9f7028fd23)
|
#include <qgsvector3d.h>
Public Member Functions | |
QgsVector3D ()=default | |
Constructs a null vector. More... | |
QgsVector3D (const QVector3D &v) | |
Constructs a vector from single-precision QVector3D. More... | |
QgsVector3D (double x, double y, double z) | |
Constructs a vector from given coordinates. More... | |
double | distance (const QgsVector3D &other) const |
Returns the distance with the other QgsVector3. More... | |
bool | isNull () const |
Returns true if all three coordinates are zero. More... | |
double | length () const |
Returns the length of the vector. More... | |
void | normalize () |
Normalizes the current vector in place. More... | |
bool | operator!= (const QgsVector3D &other) const |
QgsVector3D | operator* (const double factor) const |
Returns a new vector multiplied by scalar. More... | |
QgsVector3D | operator+ (const QgsVector3D &other) const |
Returns sum of two vectors. More... | |
QgsVector3D | operator- (const QgsVector3D &other) const |
Returns difference of two vectors. More... | |
QgsVector3D | operator/ (const double factor) const |
Returns a new vector divided by scalar. More... | |
bool | operator== (const QgsVector3D &other) const |
void | set (double x, double y, double z) |
Sets vector coordinates. More... | |
QString | toString (int precision=17) const |
Returns a string representation of the 3D vector. More... | |
double | x () const |
Returns X coordinate. More... | |
double | y () const |
Returns Y coordinate. More... | |
double | z () const |
Returns Z coordinate. More... | |
Static Public Member Functions | |
static QgsVector3D | crossProduct (const QgsVector3D &v1, const QgsVector3D &v2) |
Returns the cross product of two vectors. More... | |
static double | dotProduct (const QgsVector3D &v1, const QgsVector3D &v2) |
Returns the dot product of two vectors. More... | |
static QgsVector3D | perpendicularPoint (const QgsVector3D &v1, const QgsVector3D &v2, const QgsVector3D &vp) |
Returns the perpendicular point of vector vp from [v1 - v2]. More... | |
3 Class for storage of 3D vectors similar to QVector3D, with the difference that it uses double precision instead of single precision floating point numbers.
Definition at line 31 of file qgsvector3d.h.
|
default |
Constructs a null vector.
|
inline |
Constructs a vector from given coordinates.
Definition at line 51 of file qgsvector3d.h.
|
inline |
Constructs a vector from single-precision QVector3D.
Definition at line 55 of file qgsvector3d.h.
|
inlinestatic |
Returns the cross product of two vectors.
Definition at line 117 of file qgsvector3d.h.
|
inline |
Returns the distance with the other QgsVector3.
Definition at line 143 of file qgsvector3d.h.
|
inlinestatic |
Returns the dot product of two vectors.
Definition at line 111 of file qgsvector3d.h.
|
inline |
Returns true
if all three coordinates are zero.
Definition at line 59 of file qgsvector3d.h.
|
inline |
Returns the length of the vector.
Definition at line 125 of file qgsvector3d.h.
|
inline |
Normalizes the current vector in place.
Definition at line 131 of file qgsvector3d.h.
|
inline |
Definition at line 80 of file qgsvector3d.h.
|
inline |
Returns a new vector multiplied by scalar.
Definition at line 98 of file qgsvector3d.h.
|
inline |
Returns sum of two vectors.
Definition at line 86 of file qgsvector3d.h.
|
inline |
Returns difference of two vectors.
Definition at line 92 of file qgsvector3d.h.
|
inline |
Returns a new vector divided by scalar.
Definition at line 105 of file qgsvector3d.h.
|
inline |
Definition at line 76 of file qgsvector3d.h.
|
inlinestatic |
Returns the perpendicular point of vector vp from [v1 - v2].
Definition at line 151 of file qgsvector3d.h.
|
inline |
Sets vector coordinates.
Definition at line 69 of file qgsvector3d.h.
|
inline |
Returns a string representation of the 3D vector.
Members will be truncated to the specified precision.
Definition at line 164 of file qgsvector3d.h.
|
inline |
Returns X coordinate.
Definition at line 62 of file qgsvector3d.h.
|
inline |
Returns Y coordinate.
Definition at line 64 of file qgsvector3d.h.
|
inline |
Returns Z coordinate.
Definition at line 66 of file qgsvector3d.h.