UNPKG

@flashport/flashport

Version:

FlashPort is a TypeScript 2D graphics library that largely replicates the Flash ActionScript 3.0 library

15 lines (14 loc) 396 B
/** * Class used to store rectangles values inside rectangle packer * ID parameter needed to connect rectangle with the originally inserted rectangle */ export declare class IntegerRectangle { x: number; y: number; width: number; height: number; right: number; bottom: number; id: number; constructor(x?: number, y?: number, width?: number, height?: number); }