Skip to content

v0.7.0

Compare
Choose a tag to compare
@stevenpetryk stevenpetryk released this 02 Jan 19:16
· 200 commits to main since this release

No longer do you need to separately import vec-la, which is a fantastic (but untyped) vector/linear algebra library. You can now import a similar set of functions directly from Mafs:

import { vec } from "mafs"

const sum = vec.add(v1, v2)
const matrix = vec.matrixBuilder().translate(-2, 2).get()
// etc...