Math utils
npm install @jgtools/jgmath


Math utils
``bash`
npm i @jgtools/jgmath
`javascript`
// import all functions using a namespace
import * as JGMath from "@jgtools/jgmath";
// or import functions individually
import { getAngle } from "@jgtools/jgmath";
// ...
`html`
`javascript
import { getAngle } from "@jgtools/jgmath";
const p1 = { x: 1, y: 2 };
const p2 = { x: 5, y: 5 };
const a = getAngle(p1, p2);
``
MIT