UNPKG

transformation-matrix

Version:

2d transformation matrix functions written in ES6 syntax. Tree shaking ready!

15 lines (14 loc) 168 B
/** * Identity matrix * @returns {Matrix} Affine Matrix */ export function identity () { return { a: 1, c: 0, e: 0, b: 0, d: 1, f: 0 } }