ES6 Matrix for transform attribute manipulation
npm install transform-matrixES6 Matrix for transform attribute manipulation
``js`
npm install transform-matrix
As it's an implementation of the 2D Affine Transformation Matrix. Most of usage can be read here.
`js
import Matrix from 'transform-matrix';
let matrix = Matrix.deserialize('matrix(1,0,0,1,0,0)');
matrix = matrix.translate(88, 99);
console.log(matrix.serialize()); // matrix(1,0,0,1,88,99)
``