5 lines
251 B
TypeScript
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[];
|