UNPKG

@niuee/board

Version:

<h1 align="center"> board </h1> <p align="center"> board supercharges your html canvas element giving it the capabilities to pan, zoom, rotate, and much more. </p> <p align="center"> <a href="https://www.npmjs.com/package/@niuee/board">

20 lines (19 loc) 313 B
/** * @description The transform matrix for the camera. * It's in the format like this: * ``` * | a c e | * | b d f | * | 0 0 1 | * ``` * * @category Camera */ export type TransformMatrix = { a: number; b: number; c: number; d: number; e: number; f: number; };