mathFloor

Rounds a number down to the nearest integer. Takes value (number). Returns the floor value.

Mathematics

Parameters & Returns

Parameters

value Double

Returns

Double

Quick Summary

Rounds a number down to the nearest integer. Takes value (number). Returns the floor value.

Technical Exegesis...

Returns the largest integer less than or equal to the input value. This always rounds towards negative infinity.

Examples: mathFloor(3.7) returns 3.0, mathFloor(-2.3) returns -3.0

Example

Example.bam
; No example implemented yet