UNPKG

roughjs

Version:

Create graphics using HTML Canvas or SVG with a hand-drawn, sketchy, appearance.

10 lines (9 loc) 373 B
import { PatternFiller, RenderHelper } from './filler-interface'; import { ResolvedOptions, OpSet } from '../core'; import { Point } from '../geometry'; export declare class ZigZagLineFiller implements PatternFiller { private helper; constructor(helper: RenderHelper); fillPolygons(polygonList: Point[][], o: ResolvedOptions): OpSet; private zigzagLines; }