summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@digia.com>2014-05-22 12:49:02 +0300
committerTomi Korpipää <tomi.korpipaa@digia.com>2014-05-22 12:49:52 +0300
commit4a56455f7a5b64473da6f6cb724c366fe9942c72 (patch)
tree8e66d8ef7cfc2c4c8254a86a4db51969cd3a0004 /examples
parent71185c7f11d3cb19a7a4b678861457af7a7f8af1 (diff)
Android and iOS config fix
+ example tweak Change-Id: I408cd43a7af3efceccd42bd2439803e41c5272d6 Change-Id: I408cd43a7af3efceccd42bd2439803e41c5272d6 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/datavisualization/qmlaxisdrag/qml/qmlaxisdrag/main.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/datavisualization/qmlaxisdrag/qml/qmlaxisdrag/main.qml b/examples/datavisualization/qmlaxisdrag/qml/qmlaxisdrag/main.qml
index e161cf41..08d6e088 100644
--- a/examples/datavisualization/qmlaxisdrag/qml/qmlaxisdrag/main.qml
+++ b/examples/datavisualization/qmlaxisdrag/qml/qmlaxisdrag/main.qml
@@ -122,7 +122,7 @@ Item {
width: dataView.width
height: dataView.height
theme: dynamicColorTheme
- shadowQuality: AbstractGraph3D.ShadowQualityNone
+ shadowQuality: AbstractGraph3D.ShadowQualityLow
scene.activeCamera.yRotation: 45.0
scene.activeCamera.xRotation: 45.0
scene.activeCamera.zoomLevel: 75.0
@@ -146,7 +146,7 @@ Item {
id: qtCube
meshFile: ":/mesh/cube"
textureFile: ":/texture/texture"
- position: Qt.vector3d(0.5,0.5,0.5)
+ position: Qt.vector3d(0.65,0.35,0.65)
scaling: Qt.vector3d(0.3,0.3,0.3)
}
]
@@ -268,6 +268,7 @@ Item {
if (scatterGraph.orthoProjection) {
text = "Display Orthographic";
scatterGraph.orthoProjection = false
+ scatterGraph.shadowQuality = AbstractGraph3D.ShadowQualityLow
} else {
text = "Display Perspective";
scatterGraph.orthoProjection = true