ixfx
    Preparing search index...

    Function asPoints

    • Yields all the points of all the lines.

      const lines = [ ..some array of lines.. ];
      for (const pt of Lines.asPoints(lines)) {
      // Yields a and then b of each point sequentially
      }

      Parameters

      Returns Generator<Geometry.Point, void, unknown>