0.1.0 • Published 6 years ago

wowser-math v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Wowser Math

Build Status Test Coverage

A 3D math library for Wowser.

Licensed under the MIT license, see LICENSE for more information.

Usage

To install wowser-math:

npm install wowser-math

To use wowser-math in an ES2015 module environment:

import { Matrix4 } from 'wowser-math';

const matrix = new Matrix4();

matrix.scaleByNumber(4.0);

Documentation

wowser-math ships a complete set of jsdoc documentation.

To build a local copy of the documentation, check out the wowser-math repo and run:

npm run doc

A documentation directory will be created at the root level. The documentation can be viewed in a web browser.

Compatibility

Wowser Math should work with any browser that has native support for:

  • ES2015 Classes
  • Generators
  • const and let scoping
  • Typed Arrays

Currently, the browser support targets are the latest 2 major versions of Chrome, Firefox, Safari, and Edge.

Additionally, Node 8.7+ is supported.