Returns the min x and y of a set of vectors.
Destination the componentwise minimum is written into. Its initial components do not participate in the comparison.
The vectors or scalars to take the minimum across.
Error - When a computed component is NaN or non-finite, including when called with no values.
min({ x: 0, y: 0 }, { x: 1, y: -1 }, { x: 2, y: -2 }); // -> { x: 1, y: -2 } Copy
min({ x: 0, y: 0 }, { x: 1, y: -1 }, { x: 2, y: -2 }); // -> { x: 1, y: -2 }
Returns the min x and y of a set of vectors.