https://github.com/kylefox/physics
https://github.com/kylefox/physics
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kylefox/physics
- Owner: kylefox
- License: mit
- Created: 2016-03-17T00:38:14.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-11T01:46:22.000Z (about 10 years ago)
- Last Synced: 2025-02-09T21:31:51.394Z (over 1 year ago)
- Language: JavaScript
- Size: 444 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)