Returns the right-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 right-most of the provided points.
Same as: