aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/painterpathquickshape/arcRotation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/painterpathquickshape/arcRotation.qml')
-rw-r--r--tests/manual/painterpathquickshape/arcRotation.qml72
1 files changed, 72 insertions, 0 deletions
diff --git a/tests/manual/painterpathquickshape/arcRotation.qml b/tests/manual/painterpathquickshape/arcRotation.qml
new file mode 100644
index 0000000000..174bb7f0c8
--- /dev/null
+++ b/tests/manual/painterpathquickshape/arcRotation.qml
@@ -0,0 +1,72 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Shapes
+
+Item {
+ Repeater {
+ anchors.fill: parent
+ model: 2
+ delegate: ControlledShape {
+ id: delegate1
+
+ required property int index
+
+ fillColor: "transparent"
+ strokeColor: delegate1.index === 0 ? "red" : "blue"
+ strokeStyle: ShapePath.DashLine
+ strokeWidth: 4
+
+ width: 200
+ height: 200
+ anchors.centerIn: parent
+ startX: 50
+ startY: 100
+
+ delegate: [
+ PathArc {
+ x: 150
+ y: 100
+ radiusX: 50
+ radiusY: 20
+ xAxisRotation: delegate1.index === 0 ? 0 : 45
+ }
+ ]
+ }
+ }
+
+ Repeater {
+ anchors.fill: parent
+ model: 2
+ delegate: ControlledShape {
+ id: delegate2
+
+ required property int index
+
+ width: 200
+ height: 200
+ anchors.centerIn: parent
+
+ fillColor: "transparent"
+ strokeColor: delegate2.index === 0 ? "red" : "blue"
+
+ startX: 50
+ startY: 100
+
+ delegate: [
+ PathArc {
+ x: 150
+ y: 100
+ radiusX: 50
+ radiusY: 20
+ xAxisRotation: delegate2.index === 0 ? 0 : 45
+ direction: PathArc.Counterclockwise
+ }
+ ]
+ }
+ }
+}