10 lines
218 B
QML
10 lines
218 B
QML
|
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
|
||
|
}
|