Test/node_modules/hachure-fill/bin/hachure.d.ts
2026-04-09 22:54:00 +07:00

4 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[];