├── .gitignore ├── .gitmodules └── fire.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lib"] 2 | path = lib 3 | url = git://github.com/jeresig/processing-js.git 4 | -------------------------------------------------------------------------------- /fire.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |Made with Processing.js
44 | 45 | 122 | 135 | 136 | 137 | 138 | 139 | --------------------------------------------------------------------------------