QJoint¶
- PyQt5.Qt3DCore.QJoint
Inherits from QNode.
Description¶
Used to transforms parts of skinned meshes.
The QJoint node is used to build skeletons as part of the skinned mesh support in Qt 3D. A joint can be transformed by way of its scale, rotation and translation properties. Any mesh vertices that are bound to the joint will have their transformations updated accordingly.
Methods¶
- addChildJoint(QJoint)
Adds joint as a child of this joint. If joint has no parent, then this joint takes ownership of it. Child joints are in the coordinate system of their parent joint.
- childJoints() → List[QJoint]
The vector of joints this joint has as children.
- inverseBindMatrix() → QMatrix4x4
See also
- name() → str
See also
- removeChildJoint(QJoint)
Removes joint from this joint’s list of children. The child joint is not destroyed.
- rotation() → QQuaternion
See also
- rotationX() → float
See also
- rotationY() → float
See also
- rotationZ() → float
See also
- scale() → QVector3D
See also
- setInverseBindMatrix(QMatrix4x4)
See also
- setName(str)
See also
- setRotation(QQuaternion)
See also
- setRotationX(float)
See also
- setRotationY(float)
See also
- setRotationZ(float)
See also
- setToIdentity()
TODO
- setTranslation(QVector3D)
See also
- translation() → QVector3D
See also
Signals¶
- inverseBindMatrixChanged(QMatrix4x4)
TODO
- nameChanged(str)
TODO
- rotationChanged(QQuaternion)
TODO
- rotationXChanged(float)
TODO
- rotationYChanged(float)
TODO
- rotationZChanged(float)
TODO
- scaleChanged(QVector3D)
TODO
- translationChanged(QVector3D)
TODO