├── .gitignore ├── LICENSE ├── README.md ├── SUMMARY.md ├── book.json ├── book ├── README.md ├── building_on_ubuntu14.md ├── building_on_vmware_ubuntu15.md ├── cinder.md ├── cinder │ ├── CINDER_APP.md │ ├── DataSource.md │ ├── ImageSource.md │ ├── ObjLoader.md │ ├── Surface.md │ ├── Timer.md │ ├── TriMesh.md │ ├── VECDIM.md │ ├── app │ │ ├── AppBase.md │ │ ├── AppBase │ │ │ ├── Settings.md │ │ │ └── console.md │ │ ├── MouseEvent.md │ │ └── loadAsset.md │ ├── color.md │ ├── geom.md │ ├── geom │ │ └── Source.md │ ├── gl │ │ ├── Batch.md │ │ ├── Fbo.md │ │ ├── GlslProg.md │ │ ├── GlslProg │ │ │ └── Format.md │ │ ├── ShaderDef.md │ │ ├── VboMesh.md │ │ ├── bindStockShader.md │ │ ├── color.md │ │ ├── drawSolidCircle.md │ │ └── getStockShader.md │ └── loadUrl.md ├── getting_started.md ├── guide_to_meshes.md ├── images_in_cinder.md ├── installation_guide.md ├── resources.md └── styles │ ├── README.md │ └── website.sass ├── projects ├── 01-learn-cinder │ └── src │ │ └── learn-cinder.cpp ├── 02-interactivity │ ├── CMakeLists.txt │ ├── include │ │ └── Resources.h │ └── src │ │ └── interactivityApp.cpp ├── 03-Cube │ ├── README.md │ ├── assets │ │ ├── shader.frag │ │ ├── shader.vert │ │ ├── shader_es2.frag │ │ ├── shader_es2.vert │ │ └── texture.jpg │ ├── include │ │ └── Resources.h │ ├── linux │ │ ├── CMakeLists.txt │ │ └── cibuild │ ├── resources │ │ └── CinderApp_ios.png │ └── src │ │ └── CubeApp.cpp ├── 03-basics │ └── src │ │ └── basics.cpp └── 04-addison │ ├── README.md │ ├── assets │ ├── icosahedron.obj │ ├── shader.frag │ ├── shader.vert │ └── texture.jpg │ ├── include │ └── Resources.h │ ├── linux │ ├── CMakeLists.txt │ └── cibuild │ ├── resources │ └── CinderApp_ios.png │ └── src │ └── Addison.cpp └── sublime.sublime-project /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book.json -------------------------------------------------------------------------------- /book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/README.md -------------------------------------------------------------------------------- /book/building_on_ubuntu14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/building_on_ubuntu14.md -------------------------------------------------------------------------------- /book/building_on_vmware_ubuntu15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/building_on_vmware_ubuntu15.md -------------------------------------------------------------------------------- /book/cinder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder.md -------------------------------------------------------------------------------- /book/cinder/CINDER_APP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/CINDER_APP.md -------------------------------------------------------------------------------- /book/cinder/DataSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/DataSource.md -------------------------------------------------------------------------------- /book/cinder/ImageSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/ImageSource.md -------------------------------------------------------------------------------- /book/cinder/ObjLoader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/ObjLoader.md -------------------------------------------------------------------------------- /book/cinder/Surface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/Surface.md -------------------------------------------------------------------------------- /book/cinder/Timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/Timer.md -------------------------------------------------------------------------------- /book/cinder/TriMesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/TriMesh.md -------------------------------------------------------------------------------- /book/cinder/VECDIM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/VECDIM.md -------------------------------------------------------------------------------- /book/cinder/app/AppBase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/app/AppBase.md -------------------------------------------------------------------------------- /book/cinder/app/AppBase/Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/app/AppBase/Settings.md -------------------------------------------------------------------------------- /book/cinder/app/AppBase/console.md: -------------------------------------------------------------------------------- 1 | # console() 2 | 3 | -------------------------------------------------------------------------------- /book/cinder/app/MouseEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/app/MouseEvent.md -------------------------------------------------------------------------------- /book/cinder/app/loadAsset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/app/loadAsset.md -------------------------------------------------------------------------------- /book/cinder/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/color.md -------------------------------------------------------------------------------- /book/cinder/geom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/geom.md -------------------------------------------------------------------------------- /book/cinder/geom/Source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/geom/Source.md -------------------------------------------------------------------------------- /book/cinder/gl/Batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/gl/Batch.md -------------------------------------------------------------------------------- /book/cinder/gl/Fbo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/gl/Fbo.md -------------------------------------------------------------------------------- /book/cinder/gl/GlslProg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/gl/GlslProg.md -------------------------------------------------------------------------------- /book/cinder/gl/GlslProg/Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/gl/GlslProg/Format.md -------------------------------------------------------------------------------- /book/cinder/gl/ShaderDef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/gl/ShaderDef.md -------------------------------------------------------------------------------- /book/cinder/gl/VboMesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/gl/VboMesh.md -------------------------------------------------------------------------------- /book/cinder/gl/bindStockShader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/gl/bindStockShader.md -------------------------------------------------------------------------------- /book/cinder/gl/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/gl/color.md -------------------------------------------------------------------------------- /book/cinder/gl/drawSolidCircle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/gl/drawSolidCircle.md -------------------------------------------------------------------------------- /book/cinder/gl/getStockShader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/gl/getStockShader.md -------------------------------------------------------------------------------- /book/cinder/loadUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/cinder/loadUrl.md -------------------------------------------------------------------------------- /book/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/getting_started.md -------------------------------------------------------------------------------- /book/guide_to_meshes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/guide_to_meshes.md -------------------------------------------------------------------------------- /book/images_in_cinder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/images_in_cinder.md -------------------------------------------------------------------------------- /book/installation_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/installation_guide.md -------------------------------------------------------------------------------- /book/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/resources.md -------------------------------------------------------------------------------- /book/styles/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book/styles/website.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/book/styles/website.sass -------------------------------------------------------------------------------- /projects/01-learn-cinder/src/learn-cinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/01-learn-cinder/src/learn-cinder.cpp -------------------------------------------------------------------------------- /projects/02-interactivity/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/02-interactivity/CMakeLists.txt -------------------------------------------------------------------------------- /projects/02-interactivity/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/02-interactivity/include/Resources.h -------------------------------------------------------------------------------- /projects/02-interactivity/src/interactivityApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/02-interactivity/src/interactivityApp.cpp -------------------------------------------------------------------------------- /projects/03-Cube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-Cube/README.md -------------------------------------------------------------------------------- /projects/03-Cube/assets/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-Cube/assets/shader.frag -------------------------------------------------------------------------------- /projects/03-Cube/assets/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-Cube/assets/shader.vert -------------------------------------------------------------------------------- /projects/03-Cube/assets/shader_es2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-Cube/assets/shader_es2.frag -------------------------------------------------------------------------------- /projects/03-Cube/assets/shader_es2.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-Cube/assets/shader_es2.vert -------------------------------------------------------------------------------- /projects/03-Cube/assets/texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-Cube/assets/texture.jpg -------------------------------------------------------------------------------- /projects/03-Cube/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-Cube/include/Resources.h -------------------------------------------------------------------------------- /projects/03-Cube/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-Cube/linux/CMakeLists.txt -------------------------------------------------------------------------------- /projects/03-Cube/linux/cibuild: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $CINDER/tools/linux/cibuilder -app "$@" 3 | -------------------------------------------------------------------------------- /projects/03-Cube/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-Cube/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /projects/03-Cube/src/CubeApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-Cube/src/CubeApp.cpp -------------------------------------------------------------------------------- /projects/03-basics/src/basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/03-basics/src/basics.cpp -------------------------------------------------------------------------------- /projects/04-addison/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/04-addison/README.md -------------------------------------------------------------------------------- /projects/04-addison/assets/icosahedron.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/04-addison/assets/icosahedron.obj -------------------------------------------------------------------------------- /projects/04-addison/assets/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/04-addison/assets/shader.frag -------------------------------------------------------------------------------- /projects/04-addison/assets/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/04-addison/assets/shader.vert -------------------------------------------------------------------------------- /projects/04-addison/assets/texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/04-addison/assets/texture.jpg -------------------------------------------------------------------------------- /projects/04-addison/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/04-addison/include/Resources.h -------------------------------------------------------------------------------- /projects/04-addison/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/04-addison/linux/CMakeLists.txt -------------------------------------------------------------------------------- /projects/04-addison/linux/cibuild: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $CINDER/tools/linux/cibuilder -app "$@" 3 | -------------------------------------------------------------------------------- /projects/04-addison/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/04-addison/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /projects/04-addison/src/Addison.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/projects/04-addison/src/Addison.cpp -------------------------------------------------------------------------------- /sublime.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottosso/learn-cinder/HEAD/sublime.sublime-project --------------------------------------------------------------------------------