aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/interceptor.qml
blob: 89b4c0e54a502cc6996b48b14b28253530aca9ae (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

Image {
    transform: Rotation {
        angle: 6
        Behavior on angle {
            SpringAnimation { spring: 2; damping: 0.2; modulus: 360 }
        }
    }
}