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

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

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)