https://github.com/stackgl/bunny-walkthrough
Draws a 3D bunny to the screen using stack.gl
https://github.com/stackgl/bunny-walkthrough
Last synced: 10 months ago
JSON representation
Draws a 3D bunny to the screen using stack.gl
- Host: GitHub
- URL: https://github.com/stackgl/bunny-walkthrough
- Owner: stackgl
- Created: 2014-11-01T13:42:15.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-26T02:29:35.000Z (about 11 years ago)
- Last Synced: 2025-06-11T03:36:00.205Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://stack.gl/bunny-walkthrough/
- Size: 252 KB
- Stars: 42
- Watchers: 13
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bunny-walkthrough
A "hello world" example of sorts for using [stack.gl](http://stack.gl/):
simply draws a 3D bunny to the screen with an orbit camera for interacting
with.
Thoroughly verbose comments here, to step through the basics of how everything
fits together in practice.
To run this locally, ensure you have [node.js](http://nodejs.org/) and
[git](http://git-scm.com/) installed, then run the following from your terminal:
``` bash
git clone git@github.com:stackgl/bunny-walkthrough
cd bunny-walkthrough
npm install
npm start
```
## See Also
* [bunny](http://github.com/mikolalysenko/bunny)
* [glslify](http://github.com/stackgl/glslify)
* [browserify](http://browserify.org/)
* [canvas-orbit-camera](http://github.com/hughsk/canvas-orbit-camera)
* [simplicial-complex](http://github.com/mikolalysenko/simplicial-complex)
* [gl-matrix](http://github.com/toji/gl-matrix)