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