item13.qml Example File
shapes/content/item13.qml
import QtQuick 2.9
import QtQuick.Shapes 1.0
Rectangle {
color: "lightGray"
Rectangle {
width: 100
height: 100
anchors.centerIn: parent
border.color: "gray"
Repeater {
model: 2
Shape {
anchors.fill: parent
ShapePath {
fillColor: "transparent"
strokeColor: model.index === 0 ? "red" : "blue"
strokeStyle: ShapePath.DashLine
strokeWidth: 4
startX: 4; startY: 4
PathArc {
id: arc
x: 96; y: 96
radiusX: 100; radiusY: 100
direction: model.index === 0 ? PathArc.Clockwise : PathArc.Counterclockwise
}
}
}
}
}
Column {
anchors.right: parent.right
Text {
text: "Clockwise (sweep 1)"
color: "red"
}
Text {
text: "Counter clockwise (sweep 0)"
color: "blue"
}
}
}