Returns the left-most of the provided points.
Same as:
findMinimum((a, b) => { if (a.x <= b.x) return a; return b;}, ...points) Copy
findMinimum((a, b) => { if (a.x <= b.x) return a; return b;}, ...points)
Rest
Returns the left-most of the provided points.
Same as: