aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickpath/data/arc.qml
blob: 000221c7846318a5b7b747d7121016d950f00e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

Path {
    startX: 0; startY: 0

    PathArc {
        x: 100; y: 100
        radiusX: 100; radiusY: 100
        direction: PathArc.Clockwise
    }
}