QVector4D

PyQt5.QtGui.QVector4D

Description

The QVector4D class represents a vector or vertex in 4D space.

The QVector4D class can also be used to represent vertices in 4D 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 4D vector from the specified 2D vector. The z and w coordinates are set to zero.

See also

toVector2D().


__init__(QVector3D)

Constructs a 4D vector from the specified 3D vector. The w coordinate is set to zero.

See also

toVector3D().


__init__(QVector4D)

TODO


__init__(QVector3D, float)

TODO


__init__(QVector2D, float, float)

TODO


__init__(float, float, float, float)

TODO


__add__(QVector4D) → QVector4D

TODO


@staticmethod
dotProduct(QVector4D, QVector4D) → float

Returns the dot product of v1 and v2.


__eq__(QVector4D) → bool

TODO


__getitem__(int) → float

TODO


__iadd__(QVector4D) → QVector4D

TODO


__imul__(float) → QVector4D

TODO


__imul__(QVector4D) → QVector4D

TODO


isNull() → bool

TODO


__isub__(QVector4D) → QVector4D

TODO


__itruediv__(float) → QVector4D

TODO


__itruediv__(QVector4D) → QVector4D

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) → QVector4D

TODO


__mul__(float) → QVector4D

TODO


__mul__(QVector4D) → QVector4D

TODO


__ne__(QVector4D) → bool

TODO


__neg__() → QVector4D

TODO


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() → QVector4D

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().


__repr__() → str

TODO


__rmul__(float) → QVector4D

TODO


setW(float)

TODO


setX(float)

TODO


setY(float)

TODO


setZ(float)

TODO


__sub__(QVector4D) → QVector4D

TODO


toPoint() → QPoint

TODO


toPointF() → QPointF

TODO


toVector2D() → QVector2D

Returns the 2D vector form of this 4D vector, dropping the z and w coordinates.


toVector2DAffine() → QVector2D

Returns the 2D vector form of this 4D vector, dividing the x and y coordinates by the w coordinate and dropping the z coordinate. Returns a null vector if w is zero.


toVector3D() → QVector3D

Returns the 3D vector form of this 4D vector, dropping the w coordinate.


toVector3DAffine() → QVector3D

Returns the 3D vector form of this 4D vector, dividing the x, y, and z coordinates by the w coordinate. Returns a null vector if w is zero.


__truediv__(float) → QVector4D

TODO


__truediv__(QVector4D) → QVector4D

TODO


w() → float

See also

setW().


x() → float

See also

setX().


y() → float

See also

setY().


z() → float

See also

setZ().