sync repository
[mardrone] / mardrone / JoyStickIndicator.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     property real xvalue:0.0
5     property real yvalue:0.0
6    Text {
7        x:parent.width*0.5+parent.width*0.47*xvalue-width/2
8        y:parent.height*0.5+parent.height*-0.47*yvalue-width/2
9        text:"+"
10    }
11 }