Go to: Synopsis. Return value. Related. MEL examples.
floor
<float>
floor is undoable, queryable, and editable.
Returns the largest integer value that is not greater than the argument.floor 2; // Result: 2 // floor 2.82; // Result: 2 // floor -2.82; // Result: -3 //