├── .gitattributes ├── bookmarklet.html ├── css ├── main.css ├── normalize.css └── normalize.min.css ├── index.html ├── js ├── main.js └── vendor │ ├── OrbitControls.js │ ├── dat.gui.min.js │ ├── jquery-1.11.2.js │ ├── modernizr-2.8.3.min.js │ └── three.min.js ├── pcb ├── b.cu.png ├── b.mask.png ├── b.silk.png ├── drl.png ├── edge.png ├── f.cu.png ├── f.mask.png └── f.silk.png ├── preview.gif ├── readme.md └── setup.gif /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /bookmarklet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |GUI
's constructor: localStorage
on exit. localStorage
will override those passed to dat.GUI
's constructor. This makes it easier to work incrementally, but localStorage
is fragile, and your friends may not see the same values you do.