Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativepathview / data / closedPath.qml
1 import QtQuick 1.0
2
3 Path {
4     startY: 120
5     startX: 160
6     PathQuad {
7         y: 120
8         x: 80
9         controlY: 330
10         controlX: 100
11     }
12     PathLine {
13         y: 160
14         x: 20
15     }
16     PathCubic {
17         y: 120
18         x: 160
19         control1Y: 0
20         control1X: 100
21         control2Y: 000
22         control2X: 200
23     }
24 }