Function nearest

Returns the nearest point on line closest to point.

import { Lines } from 'https://unpkg.com/ixfx/dist/geometry.js'
const pt = Lines.nearest(line, {x:10,y:10});

If an array of lines is provided, it will be the closest point amongst all the lines

  • Parameters

    Returns Point

    Point { x, y }