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

Synopsis

min float float

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

Returns the smaller of the two floating point arguments.

Return value

floatMinimum value

Related

max

MEL examples

min -4 -6;
// Result: -6 //
min -5 -5;
// Result: -5 //