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.
See also
Methods露
- __init__()
TODO
- __init__(QPoint)
TODO
- __init__(QVector2D)
Constructs a 4D vector from the specified 2D vector. The z and w coordinates are set to zero.
See also
- __init__(QVector3D)
Constructs a 4D vector from the specified 3D vector. The w coordinate is set to zero.
See also
- __init__(QVector4D)
TODO
- __init__(QVector3D, float)
TODO
- __init__(QVector2D, float, float)
TODO
- __init__(float, float, float, float)
TODO
- __eq__(QVector4D) → bool
TODO
- __getitem__(int) → float
TODO
- __imul__(float) → QVector4D
TODO
- isNull() → bool
TODO
- __itruediv__(float) → QVector4D
TODO
- length() → float
Returns the length of the vector from the origin.
See also
- 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
- __mul__(QMatrix4x4) → QVector4D
TODO
- __mul__(float) → 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
- 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
- __repr__() → str
TODO
- __rmul__(float) → QVector4D
TODO
- setW(float)
TODO
- setX(float)
TODO
- setY(float)
TODO
- setZ(float)
TODO
- toPoint() → QPoint
TODO
- toPointF() → QPointF
TODO
- toVector2D() → QVector2D
Returns the 2D vector form of this 4D vector, dropping the z and w coordinates.
See also
- 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.
See also
- toVector3D() → QVector3D
Returns the 3D vector form of this 4D vector, dropping the w coordinate.
See also
- 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.
See also
- __truediv__(float) → QVector4D
TODO
- w() → float
See also
- x() → float
See also
- y() → float
See also
- z() → float
See also