aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/pathitem/pathitem_arc_fill.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/scenegraph_lancelot/data/pathitem/pathitem_arc_fill.qml')
-rw-r--r--tests/manual/scenegraph_lancelot/data/pathitem/pathitem_arc_fill.qml120
1 files changed, 0 insertions, 120 deletions
diff --git a/tests/manual/scenegraph_lancelot/data/pathitem/pathitem_arc_fill.qml b/tests/manual/scenegraph_lancelot/data/pathitem/pathitem_arc_fill.qml
deleted file mode 100644
index 56b581bbcb..0000000000
--- a/tests/manual/scenegraph_lancelot/data/pathitem/pathitem_arc_fill.qml
+++ /dev/null
@@ -1,120 +0,0 @@
-import QtQuick 2.9
-import QtQuick.Shapes 1.0
-
-Item {
- width: 320
- height: 480
-
- Column {
- Item {
- width: 200
- height: 100
-
- Repeater {
- model: 2
- PathItem {
- anchors.fill: parent
- enableVendorExtensions: false
-
- VisualPath {
- fillColor: "lightBlue"
- strokeColor: model.index === 0 ? "red" : "blue"
- strokeStyle: VisualPath.DashLine
- strokeWidth: 4
-
- Path {
- startX: 4; startY: 4
- PathArc {
- id: arc
- x: 96; y: 96
- radiusX: 100; radiusY: 100
- direction: model.index === 0 ? PathArc.Clockwise : PathArc.Counterclockwise
- }
- }
- }
- }
- }
- }
-
- Item {
- width: 200
- height: 100
-
- Repeater {
- model: 2
- PathItem {
- anchors.fill: parent
- enableVendorExtensions: false
-
- VisualPath {
- fillColor: "green"
- strokeColor: model.index === 0 ? "red" : "blue"
- strokeStyle: VisualPath.DashLine
- strokeWidth: 4
-
- Path {
- startX: 50; startY: 100
- PathArc {
- x: 100; y: 150
- radiusX: 50; radiusY: 50
- useLargeArc: model.index === 1
- }
- }
- }
- }
- }
- }
-
- Item {
- width: 200
- height: 100
-
- Repeater {
- model: 2
- PathItem {
- anchors.fill: parent
- enableVendorExtensions: false
-
- VisualPath {
- fillColor: "gray"
- strokeColor: model.index === 0 ? "red" : "blue"
- strokeStyle: VisualPath.DashLine
- strokeWidth: 4
-
- Path {
- startX: 50; startY: 150
- PathArc {
- x: 150; y: 150
- radiusX: 50; radiusY: 20
- xAxisRotation: model.index === 0 ? 0 : 45
- }
- }
- }
- }
- }
-
- Repeater {
- model: 2
- PathItem {
- anchors.fill: parent
- enableVendorExtensions: false
-
- VisualPath {
- fillColor: "lightGray"
- strokeColor: model.index === 0 ? "red" : "blue"
-
- Path {
- startX: 50; startY: 150
- PathArc {
- x: 150; y: 150
- radiusX: 50; radiusY: 20
- xAxisRotation: model.index === 0 ? 0 : 45
- direction: PathArc.Counterclockwise
- }
- }
- }
- }
- }
- }
- }
-}