Go to: Synopsis. Return value. Related. MEL examples.

Synopsis

floor float

floor is NOT undoable, NOT queryable, and NOT editable.

Returns the largest integer value that is not greater than the argument.

Return value

floatFloor value

Related

ceil, trunc

MEL examples

floor 2;
// Result: 2 //
floor 2.82;
// Result: 2 //
floor -2.82;
// Result: -3 //