5 lines
251 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
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[];