aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/path/arcrotation.qml
blob: dde11593ecbfd963c1f8911645782b3a289c88bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick 2.9
//![0]
Path {
    startX: 50; startY: 100

    PathArc {
        x: 150; y: 100
        radiusX: 50; radiusY: 20
        xAxisRotation: 45
    }
}
//![0]