aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickanimations/data/pathInterpolatorBack.qml
blob: 41366ef79831dd9158cb6c4a931ec803248f98a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

PathInterpolator {
    path: Path {
        startX: 50; startY: 50
        PathLine { x: 50; y: 100 }
        PathLine { x: 100; y: 100 }
        PathLine { x: 100; y: 50 }
        PathLine { x: 200; y: 50 }
    }
}