Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeqt / data / vector.qml
1 import QtQuick 1.0
2
3 QtObject {
4     property variant test1: Qt.vector3d(1, 0, 0.9);
5     property variant test2: Qt.vector3d(102, -10, -982.1);
6     property variant test3: Qt.vector3d(102, -10);
7     property variant test4: Qt.vector3d(102, -10, -982.1, 10);
8 }