UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

8 lines (7 loc) 243 B
/** * A 4-tuple containing a rectangle. The 4-tuple contains, respectively, the x * coordinate, the y coordinate, the width and the height. * * @category Helper */ export type Rect = [x: number, y: number, width: number, height: number];