UNPKG

316 BTypeScriptView Raw
1import type { AABB } from '../shapes';
2export declare class Geometry {
3 static tag: string;
4 /**
5 * excluding all children
6 */
7 contentBounds: AABB | undefined;
8 /**
9 * including extra rendering effects, eg. shadowBlur filters(drop-shadow, blur)
10 */
11 renderBounds: AABB | undefined;
12}