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
-
@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
- rotationX() → float
See also
- rotationY() → float
See also
- rotationZ() → float
See also
- scale() → float
See also
- scale3D() → QVector3D
See also
- sceneChangeEvent(QSceneChange)
TODO
- setMatrix(QMatrix4x4)
See also
- setRotation(QQuaternion)
See also
- setRotationX(float)
See also
- setRotationY(float)
See also
- setRotationZ(float)
See also
- setScale(float)
See also
- setTranslation(QVector3D)
See also
- translation() → QVector3D
See also
- 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