19 #include "qgis_core.h" 
   39       : mX( x ), mY( y ), mZ( z ) {}
 
   43       : mX( v.x() ), mY( v.y() ), mZ( v.z() ) {}
 
   46     bool isNull()
 const { 
return mX == 0 && mY == 0 && mZ == 0; }
 
   49     double x()
 const { 
return mX; }
 
   51     double y()
 const { 
return mY; }
 
   53     double z()
 const { 
return mZ; }
 
   56     void set( 
double x, 
double y, 
double z )
 
   65       return mX == other.mX && mY == other.mY && mZ == other.mZ;
 
   75       return QgsVector3D( mX + other.mX, mY + other.mY, mZ + other.mZ );
 
   81       return QgsVector3D( mX - other.mX, mY - other.mY, mZ - other.mZ );
 
   88       return QgsVector3D( mX * factor, mY * factor, mZ * factor );
 
   94       return QgsVector3D( mX / factor, mY / factor, mZ / factor );
 
  100       return v1.
x() * v2.
x() + v1.
y() * v2.
y() + v1.
z() * v2.
z();
 
  107                           v1.
z() * v2.
x() - v1.
x() * v2.
z(),
 
  108                           v1.
x() * v2.
y() - v1.
y() * v2.
x() );
 
  114       return sqrt( mX * mX + mY * mY + mZ * mZ );
 
  120       double len = length();
 
  132       return std::sqrt( ( mX - other.
x() ) * ( mX - other.
x() ) +
 
  133                         ( mY - other.
y() ) * ( mY - other.
y() ) +
 
  134                         ( mZ - other.
z() ) * ( mZ - other.
z() ) );
 
  142       double t = dotProduct( v, d );
 
  153       QString 
str = 
"Vector3D (";
 
  164     SIP_PYOBJECT __repr__();
 
  166     QString 
str = QStringLiteral( 
"<QgsVector3D: %1>" ).arg( sipCpp->toString() );
 
  167     sipRes = PyUnicode_FromString( 
str.toUtf8().constData() );
 
  171     double mX = 0, mY = 0, mZ = 0;
 
double y() const
Returns Y coordinate.
bool operator!=(const QgsVector3D &other) const
bool operator==(const QgsVector3D &other) const
double z() const
Returns Z coordinate.
QString toString(int precision=17) const
Returns a string representation of the 3D vector.
bool isNull() const
Returns true if all three coordinates are zero.
double distance(const QgsVector3D &other) const
Returns the distance with the other QgsVector3.
QgsVector3D(double x, double y, double z)
Constructs a vector from given coordinates.
QgsVector3D(const QVector3D &v)
Constructs a vector from single-precision QVector3D.
QgsVector3D operator+(const QgsVector3D &other) const
Returns sum of two vectors.
static double dotProduct(const QgsVector3D &v1, const QgsVector3D &v2)
Returns the dot product of two vectors.
double x() const
Returns X coordinate.
QgsVector3D operator-(const QgsVector3D &other) const
Returns difference of two vectors.
static QgsVector3D perpendicularPoint(const QgsVector3D &v1, const QgsVector3D &v2, const QgsVector3D &vp)
Returns the perpendicular point of vector vp from [v1 - v2].
void normalize()
Normalizes the current vector in place.
static QgsVector3D crossProduct(const QgsVector3D &v1, const QgsVector3D &v2)
Returns the cross product of two vectors.
void set(double x, double y, double z)
Sets vector coordinates.
double length() const
Returns the length of the vector.
QgsVector3D()=default
Constructs a null vector.
QString qgsDoubleToString(double a, int precision=17)
Returns a string representation of a double.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
bool operator==(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
QgsMargins operator*(const QgsMargins &margins, double factor)
Returns a QgsMargins object that is formed by multiplying each component of the given margins by fact...
QgsMargins operator/(const QgsMargins &margins, double divisor)
Returns a QgsMargins object that is formed by dividing the components of the given margins by the giv...