Origin from https://webglfundamentals.org/
npm install m3.js
yarn add m3.js
// Quick example
import * as m3 from 'm3.js';
// ...
// Compute the matrices
var projectionMatrix = m3.projection(gl.canvas.width, gl.canvas.height);
OR
// Quick example
import { projection } from 'm3.js';
// ...
// Compute the matrices
var projectionMatrix = projection(gl.canvas.width, gl.canvas.height);
✔ degToRad
✔ distance
✔ dot
✔ identity
✔ inverse
✔ multiply
✔ normalize
✔ projection
✔ radToDeg
✔ reflect
✔ rotation
✔ rotate
✔ scaling
✔ scale
✔ transformPoint
✔ translation
✔ translate
✔ project