38 * Float | \b abs | Integer | Computes the absolute value of an integer number.
39 * Float | \b abs | Float | Computes the absolute value of a floating point number.
40 * Float | \b ceil | Float | Returns the nearest integer not less than the given value.
41 * Float | \b floor | Float | Returns the nearest integer not greater than the given value.
42 * Float | \b trunc | Float | Returns the nearest integer not greater in magnitude than the given value.
43 * Float | \b round | Float | Returns the nearest integer, rounding away from zero in halfway cases.
44 * Integer | \b rint | Float | Returns the nearest integer, rounding away from zero in halfway cases.
45 * Float | \b max | Integer,Integer | Returns the greater of two integer numbers.
46 * Float | \b max | Float, Float | Returns the greater of two floating point numbers.
47 * Float | \b min | Integer,Integer | Returns the smaller of two integer numbers.
48 * Float | \b min | Float, Float | Returns the smaller of two floating point numbers.
49 * Float | \b remainder | Float,Float | Computes the remainder of the floating point division of the first argument by the second argument.
50 * Float | \b random | Float | Returns a random number in the range [0.0 ... 1.0[. Note uses \c std::rand. No seeding is performed. Invoke \c std::srand prior to using this function for the first time, if numbers should change between different runs of the software.