bluemath
v0.5.0
Published
Math kernel in Typescript
Downloads
40
Maintainers
Readme
bluemath
BlueMath is Math kernel library purely written in Javascript. Work in progress
It has several sub-modules which can be used on their own
Modules
Common components used by other modules of BlueMath. e.g. NDArray
Built on top of emscriptened LAPACK library. Provides low level access to LAPACK and high level Linear Algebra API
Implements NURBS geometry for the use in CAD Applications
Implements Topology concepts (Winged edge data structure, Euler Operators) for use in CAD Applications
Usage
npm install bluemath
Usage in TypeScript or ES6 modules javascript code
import * as bluemath from 'bluemath'
console.log(bluemath.eye(3));
Usage in Common JS environment (eg. node.js, browserify)
const bluemath = require('bluemath');
console.log(bluemath.eye(3));