Returns a point perpendicular to line at a specified distance. Use negative
distances for the other side of line.
import { Lines } from'https://unpkg.com/ixfx/dist/geometry.js' // Project a point 100 units away from line, at its midpoint. constpt = Lines.perpendicularPoint(line, 100, 0.5);
Returns a point perpendicular to
line
at a specifieddistance
. Use negative distances for the other side of line.