QTransform¶

PyQt5.Qt3DCore.QTransform

Inherits from QComponent.

Description¶

Used to perform transforms on meshes.

The QTransform component is not shareable between multiple QEntity’s. The transformation is held as QVector3D scale, QQuaternion rotation and QVector3D translation components. The transformations are applied to the mesh in that order. When QTransform::matrix property is set, it is decomposed to these transform components and corresponding signals are emitted.

Several helper functions are provided to set up the QTransform; fromAxisAndAngle() and fromAxesAndAngles() can be used to set the rotation around specific axes, fromEulerAngles() can be used to set the rotation based on euler angles and rotateAround() can be used to rotate the object around specific point relative to local origin.

Methods¶

__init__(parent: QNode = None)

Constructs a new QTransform with parent.


@staticmethod
fromAxes(QVector3D, QVector3D, QVector3D) → QQuaternion

Creates a QQuaterniom definining a rotation from the axes xAxis, yAxis and zAxis.


@staticmethod
fromAxesAndAngles(QVector3D, float, QVector3D, float) → QQuaternion

Creates a QQuaternion from axis1, angle1, axis2, and angle2. Returns the resulting QQuaternion.


@staticmethod
fromAxesAndAngles(QVector3D, float, QVector3D, float, QVector3D, float) → QQuaternion

Creates a QQuaternion from axis1, angle1, axis2, angle2, axis3, and angle3. Returns the resulting QQuaternion.


@staticmethod
fromAxisAndAngle(QVector3D, float) → QQuaternion

Creates a QQuaternion from axis and angle. Returns the resulting QQuaternion.


@staticmethod
fromAxisAndAngle(float, float, float, float) → QQuaternion

Creates a QQuaternion from x, y, z, and angle. Returns the resulting QQuaternion.


@staticmethod
fromEulerAngles(QVector3D) → QQuaternion

Creates a QQuaternion from eulerAngles. Returns the resulting QQuaternion.


@staticmethod
fromEulerAngles(float, float, float) → QQuaternion

Creates a QQuaternion from pitch, yaw, and roll. Returns the resulting QQuaternion.


matrix() → QMatrix4x4

See also

setMatrix().


@staticmethod
rotateAround(QVector3D, float, QVector3D) → QMatrix4x4

Creates a rotation matrix from axis and angle around point. Returns the resulting QMatrix4x4.


@staticmethod
rotateFromAxes(QVector3D, QVector3D, QVector3D) → QMatrix4x4

Returns a rotation matrix defined from the axes xAxis, yAxis, zAxis.


rotation() → QQuaternion

See also

setRotation().


rotationX() → float

See also

setRotationX().


rotationY() → float

See also

setRotationY().


rotationZ() → float

See also

setRotationZ().


scale() → float

See also

setScale().


scale3D() → QVector3D

See also

setScale3D().


sceneChangeEvent(QSceneChange)

TODO


setMatrix(QMatrix4x4)

See also

matrix().


setRotation(QQuaternion)

See also

rotation().


setRotationX(float)

See also

rotationX().


setRotationY(float)

See also

rotationY().


setRotationZ(float)

See also

rotationZ().


setScale(float)

See also

scale().


setScale3D(QVector3D)

See also

scale3D().


setTranslation(QVector3D)

See also

translation().


translation() → QVector3D

See also

setTranslation().


worldMatrix() → QMatrix4x4

TODO

Signals¶

matrixChanged()

TODO


rotationChanged(QQuaternion)

TODO


rotationXChanged(float)

TODO


rotationYChanged(float)

TODO


rotationZChanged(float)

TODO


scale3DChanged(QVector3D)

TODO


scaleChanged(float)

TODO


translationChanged(QVector3D)

TODO


worldMatrixChanged(QMatrix4x4)

TODO