box.d.ts 215 B

123
  1. import { BBox } from '../types';
  2. export declare function createBBox(x: number, y: number, width: number, height: number): BBox;
  3. export declare function intersectBBox(box1: Partial<BBox>, box2: Partial<BBox>): BBox;