summaryrefslogtreecommitdiffstats
path: root/tests/manual/planets-qml/Planet.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/planets-qml/Planet.qml')
-rw-r--r--tests/manual/planets-qml/Planet.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/manual/planets-qml/Planet.qml b/tests/manual/planets-qml/Planet.qml
new file mode 100644
index 000000000..acd5ccdeb
--- /dev/null
+++ b/tests/manual/planets-qml/Planet.qml
@@ -0,0 +1,19 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import Qt3D.Render 2.0
+import Qt3D.Extras 2.0
+
+SphereMesh {
+ property real r: 0
+ property real x: 0
+ property real y: 0
+ property real z: 0
+ property real roll: 0
+ property real tilt: 0
+
+ radius: 1.0
+ generateTangents: true
+ rings: 64
+ slices: 64
+}