summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/sensors/accelbubble/accelbubble.qml6
-rw-r--r--examples/sensors/maze/Mouse.qml4
2 files changed, 5 insertions, 5 deletions
diff --git a/examples/sensors/accelbubble/accelbubble.qml b/examples/sensors/accelbubble/accelbubble.qml
index 37bf427..8bd036f 100644
--- a/examples/sensors/accelbubble/accelbubble.qml
+++ b/examples/sensors/accelbubble/accelbubble.qml
@@ -63,7 +63,7 @@ ApplicationWindow {
width: 320
height: 480
visible: true
-
+ readonly property double radians_to_degrees: 180 / Math.PI
//! [1]
Accelerometer {
@@ -101,10 +101,10 @@ ApplicationWindow {
}
function calcPitch(x,y,z) {
- return -(Math.atan(y / Math.sqrt(x * x + z * z)) * 57.2957795);
+ return -Math.atan2(y, Math.hypot(x, z)) * mainWindow.radians_to_degrees;
}
function calcRoll(x,y,z) {
- return -(Math.atan(x / Math.sqrt(y * y + z * z)) * 57.2957795);
+ return -Math.atan2(x, Math.hypot(y, z)) * mainWindow.radians_to_degrees;
}
Image {
diff --git a/examples/sensors/maze/Mouse.qml b/examples/sensors/maze/Mouse.qml
index 7f8ea27..cf83991 100644
--- a/examples/sensors/maze/Mouse.qml
+++ b/examples/sensors/maze/Mouse.qml
@@ -62,6 +62,7 @@ Item {
width: Lib.cellDimension
height: Lib.cellDimension
property int angle
+ readonly property double radians_to_degrees: 180 / Math.PI
AnimatedImage {
id: img
@@ -79,8 +80,7 @@ Item {
//! [0]
var a = newy - mouse.y
var b = newx - mouse.x
- var radians_to_degrees = 57.2957795
- angle = Math.atan2(-b, a) * radians_to_degrees
+ angle = Math.atan2(-b, a) * mouse.radians_to_degrees
if (angle < 0)
angle = 360 + angle