QVector3D

PyQt5.QtGui.QVector3D

Description

The QVector3D class represents a vector or vertex in 3D space.

Vectors are one of the main building blocks of 3D representation and drawing. They consist of three coordinates, traditionally called x, y, and z.

The QVector3D class can also be used to represent vertices in 3D space. We therefore do not need to provide a separate vertex class.

Methods

__init__()

TODO


__init__(QPoint)

TODO


__init__(Union[QPointF, QPoint])

TODO


__init__(QVector2D)

Constructs a 3D vector from the specified 2D vector. The z coordinate is set to zero.

See also

toVector2D().


__init__(QVector4D)

Constructs a 3D vector from the specified 4D vector. The w coordinate is dropped.

See also

toVector4D().


__init__(QVector3D)

TODO


__init__(QVector2D, float)

TODO


__init__(float, float, float)

TODO


__add__(QVector3D) → QVector3D

TODO


@staticmethod
crossProduct(QVector3D, QVector3D) → QVector3D

Returns the cross-product of vectors v1 and v2, which corresponds to the normal vector of a plane defined by v1 and v2.

See also

normal().


distanceToLine(QVector3D, QVector3D) → float

Returns the distance that this vertex is from a line defined by point and the unit vector direction.

If direction is a null vector, then it does not define a line. In that case, the distance from point to this vertex is returned.

See also

distanceToPlane().


distanceToPlane(QVector3D, QVector3D) → float

Returns the distance from this vertex to a plane defined by the vertex plane and a normal unit vector. The normal parameter is assumed to have been normalized to a unit vector.

The return value will be negative if the vertex is below the plane, or zero if it is on the plane.


distanceToPlane(QVector3D, QVector3D, QVector3D) → float

This is an overloaded function.

Returns the distance from this vertex a plane defined by the vertices plane1, plane2 and plane3.

The return value will be negative if the vertex is below the plane, or zero if it is on the plane.

The two vectors that define the plane are plane2 - plane1 and plane3 - plane1.


distanceToPoint(QVector3D) → float

TODO


@staticmethod
dotProduct(QVector3D, QVector3D) → float

Returns the dot product of v1 and v2.


__eq__(QVector3D) → bool

TODO


__getitem__(int) → float

TODO


__iadd__(QVector3D) → QVector3D

TODO


__imul__(float) → QVector3D

TODO


__imul__(QVector3D) → QVector3D

TODO


isNull() → bool

TODO


__isub__(QVector3D) → QVector3D

TODO


__itruediv__(float) → QVector3D

TODO


__itruediv__(QVector3D) → QVector3D

TODO


length() → float

Returns the length of the vector from the origin.


lengthSquared() → float

Returns the squared length of the vector from the origin. This is equivalent to the dot product of the vector with itself.

See also

length(), dotProduct().


__mul__(QMatrix4x4) → QVector3D

TODO


__mul__(float) → QVector3D

TODO


__mul__(QVector3D) → QVector3D

TODO


__ne__(QVector3D) → bool

TODO


__neg__() → QVector3D

TODO


@staticmethod
normal(QVector3D, QVector3D) → QVector3D

Returns the normal vector of a plane defined by vectors v1 and v2, normalized to be a unit vector.

Use crossProduct() to compute the cross-product of v1 and v2 if you do not need the result to be normalized to a unit vector.


@staticmethod
normal(QVector3D, QVector3D, QVector3D) → QVector3D

This is an overloaded function.

Returns the normal vector of a plane defined by vectors v2 - v1 and v3 - v1, normalized to be a unit vector.

Use crossProduct() to compute the cross-product of v2 - v1 and v3 - v1 if you do not need the result to be normalized to a unit vector.


normalize()

Normalizes the currect vector in place. Nothing happens if this vector is a null vector or the length of the vector is very close to 1.

See also

length(), normalized().


normalized() → QVector3D

Returns the normalized unit vector form of this vector.

If this vector is null, then a null vector is returned. If the length of the vector is very close to 1, then the vector will be returned as-is. Otherwise the normalized form of the vector of length 1 will be returned.

See also

length(), normalize().


project(QMatrix4x4, QMatrix4x4, QRect) → QVector3D

TODO


__repr__() → str

TODO


__rmul__(float) → QVector3D

TODO


setX(float)

TODO


setY(float)

TODO


setZ(float)

TODO


__sub__(QVector3D) → QVector3D

TODO


toPoint() → QPoint

TODO


toPointF() → QPointF

TODO


toVector2D() → QVector2D

Returns the 2D vector form of this 3D vector, dropping the z coordinate.

See also

toVector4D(), toPoint().


toVector4D() → QVector4D

Returns the 4D form of this 3D vector, with the w coordinate set to zero.

See also

toVector2D(), toPoint().


__truediv__(float) → QVector3D

TODO


__truediv__(QVector3D) → QVector3D

TODO


unproject(QMatrix4x4, QMatrix4x4, QRect) → QVector3D

TODO


x() → float

See also

setX().


y() → float

See also

setY().


z() → float

See also

setZ().