UNPKG

modern-canvas

Version:

A JavaScript WebGL rendering engine. only the ESM.

13 lines (12 loc) 226 B
import { Matrix } from './Matrix'; /** * Matrix3 * * | x0 | y0 | z0 | * | x1 | y1 | z1 | * | x2 | y2 | z2 | */ export declare class Matrix3 extends Matrix { constructor(array?: number[]); affineInvert(): this; }