summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/scene3d
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/scene3d')
-rw-r--r--examples/qt3d/scene3d/AnimatedEntity.qml18
1 files changed, 4 insertions, 14 deletions
diff --git a/examples/qt3d/scene3d/AnimatedEntity.qml b/examples/qt3d/scene3d/AnimatedEntity.qml
index 5431db8ea..68871f04b 100644
--- a/examples/qt3d/scene3d/AnimatedEntity.qml
+++ b/examples/qt3d/scene3d/AnimatedEntity.qml
@@ -92,15 +92,8 @@ Entity {
Transform {
id: torusTransform
- matrix: {
- var m = Qt.matrix4x4(1, 0, 0, 0,
- 0, 1, 0, 0,
- 0, 0, 1, 0,
- 0, 0, 0, 1);
- m.rotate(45, Qt.vector3d(1, 0, 0))
- m.scale(Qt.vector3d(1.5, 1, 0.5));
- return m;
- }
+ scale3D: Qt.vector3d(1.5, 1, 0.5)
+ rotation: fromAxisAndAngle(Qt.vector3d(1, 0, 0), 45)
}
Entity {
@@ -117,12 +110,9 @@ Entity {
id: sphereTransform
property real userAngle: 0.0
matrix: {
- var m = Qt.matrix4x4(1, 0, 0, 0,
- 0, 1, 0, 0,
- 0, 0, 1, 0,
- 0, 0, 0, 1);
- m.translate(Qt.vector3d(20, 0, 0));
+ var m = Qt.matrix4x4();
m.rotate(userAngle, Qt.vector3d(0, 1, 0))
+ m.translate(Qt.vector3d(20, 0, 0));
return m;
}
}