10 lines
373 B
TypeScript
10 lines
373 B
TypeScript
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;
|
|
}
|