Test/node_modules/roughjs/bin/fillers/hatch-filler.d.ts
2026-04-09 22:54:00 +07:00

6 lines
265 B
TypeScript

import { HachureFiller } from './hachure-filler';
import { ResolvedOptions, OpSet } from '../core';
import { Point } from '../geometry';
export declare class HatchFiller extends HachureFiller {
fillPolygons(polygonList: Point[][], o: ResolvedOptions): OpSet;
}