aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/path/arcrotation.qml
blob: 26ab0f4661649bd9786c14ba70e0b4e81cd876d1 (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
//![0]
Path {
    startX: 50; startY: 100

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