Float
Represents a floating point number. Example:
var f : Float := 3.5;
The default value for Float properties and variables is 0f.
Functions
round():Int
Rounds this value to the nearest Int value.
floor():Int
Returns the largest Int that is less than or equal to this value.
ceil():Int
Returns the smallest Int that is greater than or equal to this value.
toString():String
Converts this value to a String.
Static Functions
random():Float
Produces a random Float between 0 and 1.
Float