2026-05-31 13:54:31 +02:00

5 lines
251 B
TypeScript

export type Point = [number, number];
export type Line = [Point, Point];
export type Polygon = Point[];
export declare function hachureLines(polygons: Polygon | Polygon[], hachureGap: number, hachureAngle: number, hachureStepOffset?: number): Line[];