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¶

__init__(parent: QNode = None)

Constructs a new QJoint with parent.


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

name() → str

See also

setName().


removeChildJoint(QJoint)

Removes joint from this joint’s list of children. The child joint is not destroyed.


rotation() → QQuaternion

See also

setRotation().


rotationX() → float

See also

setRotationX().


rotationY() → float

See also

setRotationY().


rotationZ() → float

See also

setRotationZ().


scale() → QVector3D

See also

setScale().


setInverseBindMatrix(QMatrix4x4)

setName(str)

See also

name().


setRotation(QQuaternion)

See also

rotation().


setRotationX(float)

See also

rotationX().


setRotationY(float)

See also

rotationY().


setRotationZ(float)

See also

rotationZ().


setScale(QVector3D)

See also

scale().


setToIdentity()

TODO


setTranslation(QVector3D)

See also

translation().


translation() → QVector3D

See also

setTranslation().

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