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.
See also
Methods露
- __init__()
TODO
- __init__(QPoint)
TODO
- __init__(QVector2D)
Constructs a 3D vector from the specified 2D vector. The z coordinate is set to zero.
See also
- __init__(QVector4D)
Constructs a 3D vector from the specified 4D vector. The w coordinate is dropped.
See also
- __init__(QVector3D)
TODO
- __init__(QVector2D, float)
TODO
- __init__(float, float, float)
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
- 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(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.
See also
- 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.
See also
- distanceToPoint(QVector3D) → float
TODO
- __eq__(QVector3D) → bool
TODO
- __getitem__(int) → float
TODO
- __imul__(float) → QVector3D
TODO
- isNull() → bool
TODO
- __itruediv__(float) → QVector3D
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) → QVector3D
TODO
- __mul__(float) → 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.
See also
-
@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.
See also
- 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() → 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
- project(QMatrix4x4, QMatrix4x4, QRect) → QVector3D
TODO
- __repr__() → str
TODO
- __rmul__(float) → QVector3D
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 3D vector, dropping the z coordinate.
See also
- toVector4D() → QVector4D
Returns the 4D form of this 3D vector, with the w coordinate set to zero.
See also
- __truediv__(float) → QVector3D
TODO
- unproject(QMatrix4x4, QMatrix4x4, QRect) → QVector3D
TODO
- x() → float
See also
- y() → float
See also
- z() → float
See also