qtdeclarative/tests/auto/qml/qmlcppcodegen/data/infinities.qml

10 lines
218 B
QML
Raw Permalink Normal View History

import QtQml
QtObject {
property real positiveInfinity: Infinity
property real negativeInfinity: -Infinity
property real positiveZero: 0.0
property real negativeZero: -0.0
property real naN: NaN
}