UNPKG

319 BTypeScriptView Raw
1import type { LengthFactory } from '../types';
2/**
3 * Returns a {x,y} point at a given length, the total length and
4 * the minimum and maximum {x,y} coordinates of a line (L,V,H,Z) segment.
5 */
6export declare function segmentLineFactory(x1: number, y1: number, x2: number, y2: number, distance: number): LengthFactory;