An open API service indexing awesome lists of open source software.

https://github.com/kylefox/physics


https://github.com/kylefox/physics

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

Messing around with random physics & math concepts JUST BECAUSE.

# Setup

Install dependencies:

npm install

Run the LiveReload server:

gulp

Run the tests:

gulp test

Or, have the test automatically run while you make changes:

gulp tdd

Generate [JSDoc](http://usejsdoc.org/) documentation to `./docs/`:

npm run docs

# Resources

## Vectors

* [Vector Math Tutorial (with source code)](http://sacredsoftware.net/tutorials/vector.html)
* [lwjgl/Vector3f.java](https://github.com/LWJGL/lwjgl/blob/master/src/java/org/lwjgl/util/vector/Vector3f.java)
* [Vector3f.java](https://github.com/SilverTiger/lwjgl3-tutorial/blob/master/src/silvertiger/tutorial/lwjgl/math/Vector3f.java)