aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativepathview/data/pathtest.qml
blob: b13c00662e7de58a473a2fca9cd280be14db646e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 1.0

Path {
    startX: 120; startY: 100

    PathAttribute { name: "scale"; value: 1.0 }
    PathQuad { x: 120; y: 25; controlX: 260; controlY: 75 }
    PathPercent { value: 0.3 }
    PathLine { x: 120; y: 100 }
    PathCubic {
        x: 180; y: 0; control1X: -10; control1Y: 90
        control2X: 210; control2Y: 90
    }
}