aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickpath/data/anglearc.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickpath/data/anglearc.qml')
-rw-r--r--tests/auto/quick/qquickpath/data/anglearc.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickpath/data/anglearc.qml b/tests/auto/quick/qquickpath/data/anglearc.qml
new file mode 100644
index 0000000000..cbe41c1ac8
--- /dev/null
+++ b/tests/auto/quick/qquickpath/data/anglearc.qml
@@ -0,0 +1,12 @@
+import QtQuick 2.11
+
+Path {
+ PathAngleArc {
+ centerX: 100
+ centerY: 100
+ radiusX: 50
+ radiusY: 50
+ startAngle: 45
+ sweepAngle: 90
+ }
+}