Files
infocom-systems-design/node_modules/hachure-fill/bin/hachure.d.ts
2025-10-03 22:27:28 +03: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[];