ixfx
    Preparing search index...

    Function leftmost

    • Returns the left-most of the provided points.

      Same as:

      findMinimum((a, b) => {
      if (a.x <= b.x) return a;
      return b;
      }, ...points)

      Parameters

      Returns Geometry.Point