/** * Returns the bounding box of a convex polygon */ export declare const boundingBox: (vertices: number[][], xBound: number, yBound: number) => { top: number; bottom: number; left: number; right: number; }; /** * Rasterizes a convex polygon to scanlines */ export declare const toScanlines: (vertices: number[][], xBound: number, yBound: number) => number[][];