├── .gitignore ├── 01_01DrawOneCircle ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── drawOneCircle.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 01_02DrawCircles ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── drawCircles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawCircles Debug.xcscheme │ │ └── drawCircles Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 01_03DrawMoveCircle ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── drawMoveCircle.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawCircles Debug.xcscheme │ │ └── drawCircles Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 01_04DrawMoveCircles ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── drawMoveCircles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawCircles Debug.xcscheme │ │ └── drawCircles Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 01_05Vector01 ├── Makefile ├── Project.xcconfig ├── Vector.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawCircles Debug.xcscheme │ │ └── drawCircles Release.xcscheme ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 01_06Vector02 ├── Makefile ├── Project.xcconfig ├── Vector.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawCircles Debug.xcscheme │ │ └── drawCircles Release.xcscheme ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 01_07Vector03 ├── Makefile ├── Project.xcconfig ├── Vector.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawCircles Debug.xcscheme │ │ └── drawCircles Release.xcscheme ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 01_08Vector04 ├── Makefile ├── Project.xcconfig ├── Vector.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawCircles Debug.xcscheme │ │ └── drawCircles Release.xcscheme ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 01_09Vector05 ├── Makefile ├── Project.xcconfig ├── Vector.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawCircles Debug.xcscheme │ │ └── drawCircles Release.xcscheme ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_01OneParticle ├── Makefile ├── OneParticle.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_02OneParticleClass01 ├── Makefile ├── OneParticleClass.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_03OneParticleClass02 ├── Makefile ├── OneParticleClass.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_04ParticleArray ├── Makefile ├── Particles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_05ParticleSystem_pre ├── Makefile ├── Particles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_06ParticleSystem01 ├── Makefile ├── Particles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_07ParticleSystem02 ├── Makefile ├── Particles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_08ParticleSystem03 ├── Makefile ├── Particles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_09ParticleSystem04 ├── Makefile ├── Particles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── particle32.png ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_10ParticleSystem05 ├── Makefile ├── Particles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── particle32.png ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 02_11ParticleSystem06 ├── Makefile ├── Particles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── drawOneCircle Debug.xcscheme │ │ └── drawOneCircle Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── particle32.png ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 03_00_spring_pre ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── particle32.png ├── config.make ├── openFrameworks-Info.plist ├── spring.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── Spring.cpp │ ├── Spring.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 03_01_spring ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── particle32.png ├── config.make ├── openFrameworks-Info.plist ├── spring.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── Spring.cpp │ ├── Spring.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 03_02_springs ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── particle32.png ├── config.make ├── openFrameworks-Info.plist ├── spring.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── Spring.cpp │ ├── Spring.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 03_03_springsMultiForces ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── particle32.png ├── config.make ├── openFrameworks-Info.plist ├── spring.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── Spring.cpp │ ├── Spring.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 03_05_vectorField ├── Makefile ├── Project.xcconfig ├── VectorField.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ ├── testApp.h │ ├── vectorField.cpp │ └── vectorField.h ├── 03_06_vectorFieldParticle ├── Makefile ├── Project.xcconfig ├── VectorField.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ ├── testApp.h │ ├── vectorField.cpp │ └── vectorField.h ├── 03_07_vectorFieldDrawings ├── Makefile ├── Project.xcconfig ├── VectorField.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── config.make ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ ├── testApp.h │ ├── vectorField.cpp │ └── vectorField.h ├── 04_01_ofxGuiSimple ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── settings.xml ├── config.make ├── ofxGuiSimple.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxGuiSimple Debug.xcscheme │ │ └── ofxGuiSimple Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 04_02_ofxGuiVectorField ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── settings.xml ├── config.make ├── ofxGuiVectorField.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxGuiSimple Debug.xcscheme │ │ └── ofxGuiSimple Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ ├── testApp.h │ ├── vectorField.cpp │ └── vectorField.h ├── 04_03_ofxBox2dExample ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── ofxBox2dExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxBox2dExample Debug.xcscheme │ │ └── ofxBox2dExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 04_04_ofxBox2dExample ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── ofxBox2dExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxBox2dExample Debug.xcscheme │ │ └── ofxBox2dExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 04_05_ofxBox2dExample ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── ofxBox2dExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxBox2dExample Debug.xcscheme │ │ └── ofxBox2dExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 05_01_ofxOpenCvBasic ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── fingers.mov ├── config.make ├── openFrameworks-Info.plist ├── opencvExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── opencvExample Debug.xcscheme │ │ └── opencvExample Release.xcscheme └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 05_02_ofxCvContorFinder ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── ofxCvTest.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxCvTest Debug.xcscheme │ │ └── ofxCvTest Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 05_03_ofxCvGUI ├── 05_03_ofxCvGUI.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── 05_03_ofxCvGUI Debug.xcscheme │ │ └── 05_03_ofxCvGUI Release.xcscheme ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 05_04_ofxCvOpticalFlowGUI ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── ofxCvOpticalFlowGUI.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxCvOpticalFlowGUI Debug.xcscheme │ │ └── ofxCvOpticalFlowGUI Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 05_05_ofxCvOpticalFlowParticle ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── ofxCvOpticalFlowParticle.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxCvOpticalFlowGUI Debug.xcscheme │ │ └── ofxCvOpticalFlowGUI Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 06_01_3dPrimitives ├── 3dPrimitves.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── Makefile ├── Project.xcconfig ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 06_02_EasyCamWireframe ├── 3dPrimitves.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── Makefile ├── Project.xcconfig ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 06_03_EasyCamDraw ├── 3dPrimitves.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── Makefile ├── Project.xcconfig ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 06_04_Lighting ├── 3dPrimitves.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── Makefile ├── Project.xcconfig ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 06_05_Mesh ├── 3dMesh.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── Makefile ├── Project.xcconfig ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 06_06_MeshVBO ├── 3dMesh.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── Makefile ├── Project.xcconfig ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 06_07_MeshCam ├── 3dMesh.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── Makefile ├── Project.xcconfig ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 07_00_sceneExample_pre ├── Makefile ├── Project.xcconfig ├── config.make ├── emptyExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── SceneA.cpp │ ├── SceneA.h │ ├── baseScene.cpp │ ├── baseScene.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 07_01_sceneExample_01 ├── Makefile ├── Project.xcconfig ├── config.make ├── emptyExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── SceneA.cpp │ ├── SceneA.h │ ├── SceneB.cpp │ ├── SceneB.h │ ├── SceneC.cpp │ ├── SceneC.h │ ├── baseScene.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 07_02_sceneExample_02 ├── Makefile ├── Project.xcconfig ├── bin │ └── data │ │ └── particle32.png ├── config.make ├── emptyExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── Particle.cpp │ ├── Particle.h │ ├── SceneA.cpp │ ├── SceneA.h │ ├── SceneB.cpp │ ├── SceneB.h │ ├── SceneC.cpp │ ├── SceneC.h │ ├── baseScene.cpp │ ├── baseScene.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 07_03_StateMachineTemplate ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── vag.ttf ├── ofxStateMachineExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example Debug.xcscheme │ │ └── example Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── TemplateState.cpp │ ├── TemplateState.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 07_04_SharedDataTemplate ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── vag.ttf ├── ofxStateMachineExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example Debug.xcscheme │ │ └── example Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── SharedData.h │ ├── TemplateState.cpp │ ├── TemplateState.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 07_05_StateMachineExample ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── particle32.png ├── ofxStateMachineExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example Debug.xcscheme │ │ └── example Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── BoxState.cpp │ ├── BoxState.h │ ├── CircleState.cpp │ ├── CircleState.h │ ├── ParticleState.cpp │ ├── ParticleState.h │ ├── SharedData.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 08_00_OscSender ├── Makefile ├── Project.xcconfig ├── config.make ├── emptyExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 08_01_OscReceiver ├── Makefile ├── Project.xcconfig ├── config.make ├── emptyExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 08_02_OscRingSender ├── Makefile ├── Project.xcconfig ├── config.make ├── emptyExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── Ring.cpp │ ├── Ring.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 08_03_OscRingReceiver ├── Makefile ├── Project.xcconfig ├── config.make ├── emptyExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── Ring.cpp │ ├── Ring.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 08_04_ofxTuioExample01 ├── Makefile ├── Project.xcconfig ├── config.make ├── emptyExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 08_05_ofxTuioExample02 ├── Makefile ├── Project.xcconfig ├── bin │ └── data │ │ └── images │ │ ├── photo.jpg │ │ └── photo.png ├── config.make ├── emptyExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 08_06_ofxTuioExample03 ├── Makefile ├── Project.xcconfig ├── bin │ └── data │ │ └── sounds │ │ └── rainstick.aif ├── config.make ├── emptyExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── emptyExample Debug.xcscheme │ │ └── emptyExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/.gitignore -------------------------------------------------------------------------------- /01_01DrawOneCircle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_01DrawOneCircle/Makefile -------------------------------------------------------------------------------- /01_01DrawOneCircle/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_01DrawOneCircle/Project.xcconfig -------------------------------------------------------------------------------- /01_01DrawOneCircle/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_01DrawOneCircle/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_01DrawOneCircle/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_01DrawOneCircle/config.make -------------------------------------------------------------------------------- /01_01DrawOneCircle/drawOneCircle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_01DrawOneCircle/drawOneCircle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01_01DrawOneCircle/drawOneCircle.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_01DrawOneCircle/drawOneCircle.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /01_01DrawOneCircle/drawOneCircle.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_01DrawOneCircle/drawOneCircle.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /01_01DrawOneCircle/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_01DrawOneCircle/openFrameworks-Info.plist -------------------------------------------------------------------------------- /01_01DrawOneCircle/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_01DrawOneCircle/src/main.cpp -------------------------------------------------------------------------------- /01_01DrawOneCircle/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_01DrawOneCircle/src/testApp.cpp -------------------------------------------------------------------------------- /01_01DrawOneCircle/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_01DrawOneCircle/src/testApp.h -------------------------------------------------------------------------------- /01_02DrawCircles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_02DrawCircles/Makefile -------------------------------------------------------------------------------- /01_02DrawCircles/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_02DrawCircles/Project.xcconfig -------------------------------------------------------------------------------- /01_02DrawCircles/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_02DrawCircles/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_02DrawCircles/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_02DrawCircles/config.make -------------------------------------------------------------------------------- /01_02DrawCircles/drawCircles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_02DrawCircles/drawCircles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01_02DrawCircles/drawCircles.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_02DrawCircles/drawCircles.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme -------------------------------------------------------------------------------- /01_02DrawCircles/drawCircles.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_02DrawCircles/drawCircles.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme -------------------------------------------------------------------------------- /01_02DrawCircles/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_02DrawCircles/openFrameworks-Info.plist -------------------------------------------------------------------------------- /01_02DrawCircles/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_02DrawCircles/src/main.cpp -------------------------------------------------------------------------------- /01_02DrawCircles/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_02DrawCircles/src/testApp.cpp -------------------------------------------------------------------------------- /01_02DrawCircles/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_02DrawCircles/src/testApp.h -------------------------------------------------------------------------------- /01_03DrawMoveCircle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_03DrawMoveCircle/Makefile -------------------------------------------------------------------------------- /01_03DrawMoveCircle/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_03DrawMoveCircle/Project.xcconfig -------------------------------------------------------------------------------- /01_03DrawMoveCircle/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_03DrawMoveCircle/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_03DrawMoveCircle/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_03DrawMoveCircle/config.make -------------------------------------------------------------------------------- /01_03DrawMoveCircle/drawMoveCircle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_03DrawMoveCircle/drawMoveCircle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01_03DrawMoveCircle/drawMoveCircle.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_03DrawMoveCircle/drawMoveCircle.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme -------------------------------------------------------------------------------- /01_03DrawMoveCircle/drawMoveCircle.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_03DrawMoveCircle/drawMoveCircle.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme -------------------------------------------------------------------------------- /01_03DrawMoveCircle/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_03DrawMoveCircle/openFrameworks-Info.plist -------------------------------------------------------------------------------- /01_03DrawMoveCircle/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_03DrawMoveCircle/src/main.cpp -------------------------------------------------------------------------------- /01_03DrawMoveCircle/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_03DrawMoveCircle/src/testApp.cpp -------------------------------------------------------------------------------- /01_03DrawMoveCircle/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_03DrawMoveCircle/src/testApp.h -------------------------------------------------------------------------------- /01_04DrawMoveCircles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_04DrawMoveCircles/Makefile -------------------------------------------------------------------------------- /01_04DrawMoveCircles/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_04DrawMoveCircles/Project.xcconfig -------------------------------------------------------------------------------- /01_04DrawMoveCircles/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_04DrawMoveCircles/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_04DrawMoveCircles/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_04DrawMoveCircles/config.make -------------------------------------------------------------------------------- /01_04DrawMoveCircles/drawMoveCircles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_04DrawMoveCircles/drawMoveCircles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01_04DrawMoveCircles/drawMoveCircles.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_04DrawMoveCircles/drawMoveCircles.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme -------------------------------------------------------------------------------- /01_04DrawMoveCircles/drawMoveCircles.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_04DrawMoveCircles/drawMoveCircles.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme -------------------------------------------------------------------------------- /01_04DrawMoveCircles/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_04DrawMoveCircles/openFrameworks-Info.plist -------------------------------------------------------------------------------- /01_04DrawMoveCircles/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_04DrawMoveCircles/src/main.cpp -------------------------------------------------------------------------------- /01_04DrawMoveCircles/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_04DrawMoveCircles/src/testApp.cpp -------------------------------------------------------------------------------- /01_04DrawMoveCircles/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_04DrawMoveCircles/src/testApp.h -------------------------------------------------------------------------------- /01_05Vector01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_05Vector01/Makefile -------------------------------------------------------------------------------- /01_05Vector01/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_05Vector01/Project.xcconfig -------------------------------------------------------------------------------- /01_05Vector01/Vector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_05Vector01/Vector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01_05Vector01/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_05Vector01/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme -------------------------------------------------------------------------------- /01_05Vector01/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_05Vector01/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme -------------------------------------------------------------------------------- /01_05Vector01/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_05Vector01/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_05Vector01/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_05Vector01/config.make -------------------------------------------------------------------------------- /01_05Vector01/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_05Vector01/openFrameworks-Info.plist -------------------------------------------------------------------------------- /01_05Vector01/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_05Vector01/src/main.cpp -------------------------------------------------------------------------------- /01_05Vector01/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_05Vector01/src/testApp.cpp -------------------------------------------------------------------------------- /01_05Vector01/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_05Vector01/src/testApp.h -------------------------------------------------------------------------------- /01_06Vector02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_06Vector02/Makefile -------------------------------------------------------------------------------- /01_06Vector02/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_06Vector02/Project.xcconfig -------------------------------------------------------------------------------- /01_06Vector02/Vector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_06Vector02/Vector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01_06Vector02/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_06Vector02/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme -------------------------------------------------------------------------------- /01_06Vector02/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_06Vector02/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme -------------------------------------------------------------------------------- /01_06Vector02/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_06Vector02/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_06Vector02/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_06Vector02/config.make -------------------------------------------------------------------------------- /01_06Vector02/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_06Vector02/openFrameworks-Info.plist -------------------------------------------------------------------------------- /01_06Vector02/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_06Vector02/src/main.cpp -------------------------------------------------------------------------------- /01_06Vector02/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_06Vector02/src/testApp.cpp -------------------------------------------------------------------------------- /01_06Vector02/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_06Vector02/src/testApp.h -------------------------------------------------------------------------------- /01_07Vector03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_07Vector03/Makefile -------------------------------------------------------------------------------- /01_07Vector03/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_07Vector03/Project.xcconfig -------------------------------------------------------------------------------- /01_07Vector03/Vector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_07Vector03/Vector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01_07Vector03/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_07Vector03/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme -------------------------------------------------------------------------------- /01_07Vector03/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_07Vector03/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme -------------------------------------------------------------------------------- /01_07Vector03/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_07Vector03/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_07Vector03/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_07Vector03/config.make -------------------------------------------------------------------------------- /01_07Vector03/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_07Vector03/openFrameworks-Info.plist -------------------------------------------------------------------------------- /01_07Vector03/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_07Vector03/src/main.cpp -------------------------------------------------------------------------------- /01_07Vector03/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_07Vector03/src/testApp.cpp -------------------------------------------------------------------------------- /01_07Vector03/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_07Vector03/src/testApp.h -------------------------------------------------------------------------------- /01_08Vector04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_08Vector04/Makefile -------------------------------------------------------------------------------- /01_08Vector04/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_08Vector04/Project.xcconfig -------------------------------------------------------------------------------- /01_08Vector04/Vector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_08Vector04/Vector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01_08Vector04/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_08Vector04/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme -------------------------------------------------------------------------------- /01_08Vector04/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_08Vector04/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme -------------------------------------------------------------------------------- /01_08Vector04/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_08Vector04/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_08Vector04/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_08Vector04/config.make -------------------------------------------------------------------------------- /01_08Vector04/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_08Vector04/openFrameworks-Info.plist -------------------------------------------------------------------------------- /01_08Vector04/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_08Vector04/src/main.cpp -------------------------------------------------------------------------------- /01_08Vector04/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_08Vector04/src/testApp.cpp -------------------------------------------------------------------------------- /01_08Vector04/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_08Vector04/src/testApp.h -------------------------------------------------------------------------------- /01_09Vector05/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_09Vector05/Makefile -------------------------------------------------------------------------------- /01_09Vector05/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_09Vector05/Project.xcconfig -------------------------------------------------------------------------------- /01_09Vector05/Vector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_09Vector05/Vector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01_09Vector05/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_09Vector05/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Debug.xcscheme -------------------------------------------------------------------------------- /01_09Vector05/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_09Vector05/Vector.xcodeproj/xcshareddata/xcschemes/drawCircles Release.xcscheme -------------------------------------------------------------------------------- /01_09Vector05/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_09Vector05/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_09Vector05/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_09Vector05/config.make -------------------------------------------------------------------------------- /01_09Vector05/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_09Vector05/openFrameworks-Info.plist -------------------------------------------------------------------------------- /01_09Vector05/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_09Vector05/src/main.cpp -------------------------------------------------------------------------------- /01_09Vector05/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_09Vector05/src/testApp.cpp -------------------------------------------------------------------------------- /01_09Vector05/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/01_09Vector05/src/testApp.h -------------------------------------------------------------------------------- /02_01OneParticle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_01OneParticle/Makefile -------------------------------------------------------------------------------- /02_01OneParticle/OneParticle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_01OneParticle/OneParticle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_01OneParticle/OneParticle.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_01OneParticle/OneParticle.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_01OneParticle/OneParticle.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_01OneParticle/OneParticle.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_01OneParticle/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_01OneParticle/Project.xcconfig -------------------------------------------------------------------------------- /02_01OneParticle/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_01OneParticle/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_01OneParticle/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_01OneParticle/config.make -------------------------------------------------------------------------------- /02_01OneParticle/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_01OneParticle/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_01OneParticle/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_01OneParticle/src/main.cpp -------------------------------------------------------------------------------- /02_01OneParticle/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_01OneParticle/src/testApp.cpp -------------------------------------------------------------------------------- /02_01OneParticle/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_01OneParticle/src/testApp.h -------------------------------------------------------------------------------- /02_02OneParticleClass01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/Makefile -------------------------------------------------------------------------------- /02_02OneParticleClass01/OneParticleClass.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/OneParticleClass.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_02OneParticleClass01/OneParticleClass.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/OneParticleClass.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_02OneParticleClass01/OneParticleClass.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/OneParticleClass.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_02OneParticleClass01/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/Project.xcconfig -------------------------------------------------------------------------------- /02_02OneParticleClass01/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_02OneParticleClass01/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_02OneParticleClass01/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/config.make -------------------------------------------------------------------------------- /02_02OneParticleClass01/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_02OneParticleClass01/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/src/Particle.cpp -------------------------------------------------------------------------------- /02_02OneParticleClass01/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/src/Particle.h -------------------------------------------------------------------------------- /02_02OneParticleClass01/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/src/main.cpp -------------------------------------------------------------------------------- /02_02OneParticleClass01/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/src/testApp.cpp -------------------------------------------------------------------------------- /02_02OneParticleClass01/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_02OneParticleClass01/src/testApp.h -------------------------------------------------------------------------------- /02_03OneParticleClass02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/Makefile -------------------------------------------------------------------------------- /02_03OneParticleClass02/OneParticleClass.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/OneParticleClass.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_03OneParticleClass02/OneParticleClass.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/OneParticleClass.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_03OneParticleClass02/OneParticleClass.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/OneParticleClass.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_03OneParticleClass02/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/Project.xcconfig -------------------------------------------------------------------------------- /02_03OneParticleClass02/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_03OneParticleClass02/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_03OneParticleClass02/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/config.make -------------------------------------------------------------------------------- /02_03OneParticleClass02/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_03OneParticleClass02/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/src/Particle.cpp -------------------------------------------------------------------------------- /02_03OneParticleClass02/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/src/Particle.h -------------------------------------------------------------------------------- /02_03OneParticleClass02/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/src/main.cpp -------------------------------------------------------------------------------- /02_03OneParticleClass02/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/src/testApp.cpp -------------------------------------------------------------------------------- /02_03OneParticleClass02/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_03OneParticleClass02/src/testApp.h -------------------------------------------------------------------------------- /02_04ParticleArray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/Makefile -------------------------------------------------------------------------------- /02_04ParticleArray/Particles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/Particles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_04ParticleArray/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_04ParticleArray/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_04ParticleArray/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/Project.xcconfig -------------------------------------------------------------------------------- /02_04ParticleArray/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_04ParticleArray/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_04ParticleArray/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/config.make -------------------------------------------------------------------------------- /02_04ParticleArray/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_04ParticleArray/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/src/Particle.cpp -------------------------------------------------------------------------------- /02_04ParticleArray/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/src/Particle.h -------------------------------------------------------------------------------- /02_04ParticleArray/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/src/main.cpp -------------------------------------------------------------------------------- /02_04ParticleArray/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/src/testApp.cpp -------------------------------------------------------------------------------- /02_04ParticleArray/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_04ParticleArray/src/testApp.h -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/Makefile -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/Particles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/Particles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/Project.xcconfig -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/config.make -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/src/Particle.cpp -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/src/Particle.h -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/src/main.cpp -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/src/testApp.cpp -------------------------------------------------------------------------------- /02_05ParticleSystem_pre/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_05ParticleSystem_pre/src/testApp.h -------------------------------------------------------------------------------- /02_06ParticleSystem01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/Makefile -------------------------------------------------------------------------------- /02_06ParticleSystem01/Particles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/Particles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_06ParticleSystem01/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_06ParticleSystem01/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_06ParticleSystem01/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/Project.xcconfig -------------------------------------------------------------------------------- /02_06ParticleSystem01/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_06ParticleSystem01/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_06ParticleSystem01/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/config.make -------------------------------------------------------------------------------- /02_06ParticleSystem01/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_06ParticleSystem01/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/src/Particle.cpp -------------------------------------------------------------------------------- /02_06ParticleSystem01/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/src/Particle.h -------------------------------------------------------------------------------- /02_06ParticleSystem01/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/src/main.cpp -------------------------------------------------------------------------------- /02_06ParticleSystem01/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/src/testApp.cpp -------------------------------------------------------------------------------- /02_06ParticleSystem01/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_06ParticleSystem01/src/testApp.h -------------------------------------------------------------------------------- /02_07ParticleSystem02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/Makefile -------------------------------------------------------------------------------- /02_07ParticleSystem02/Particles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/Particles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_07ParticleSystem02/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_07ParticleSystem02/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_07ParticleSystem02/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/Project.xcconfig -------------------------------------------------------------------------------- /02_07ParticleSystem02/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_07ParticleSystem02/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_07ParticleSystem02/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/config.make -------------------------------------------------------------------------------- /02_07ParticleSystem02/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_07ParticleSystem02/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/src/Particle.cpp -------------------------------------------------------------------------------- /02_07ParticleSystem02/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/src/Particle.h -------------------------------------------------------------------------------- /02_07ParticleSystem02/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/src/main.cpp -------------------------------------------------------------------------------- /02_07ParticleSystem02/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/src/testApp.cpp -------------------------------------------------------------------------------- /02_07ParticleSystem02/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_07ParticleSystem02/src/testApp.h -------------------------------------------------------------------------------- /02_08ParticleSystem03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/Makefile -------------------------------------------------------------------------------- /02_08ParticleSystem03/Particles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/Particles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_08ParticleSystem03/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_08ParticleSystem03/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_08ParticleSystem03/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/Project.xcconfig -------------------------------------------------------------------------------- /02_08ParticleSystem03/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_08ParticleSystem03/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_08ParticleSystem03/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/config.make -------------------------------------------------------------------------------- /02_08ParticleSystem03/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_08ParticleSystem03/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/src/Particle.cpp -------------------------------------------------------------------------------- /02_08ParticleSystem03/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/src/Particle.h -------------------------------------------------------------------------------- /02_08ParticleSystem03/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/src/main.cpp -------------------------------------------------------------------------------- /02_08ParticleSystem03/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/src/testApp.cpp -------------------------------------------------------------------------------- /02_08ParticleSystem03/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_08ParticleSystem03/src/testApp.h -------------------------------------------------------------------------------- /02_09ParticleSystem04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/Makefile -------------------------------------------------------------------------------- /02_09ParticleSystem04/Particles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/Particles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_09ParticleSystem04/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_09ParticleSystem04/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_09ParticleSystem04/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/Project.xcconfig -------------------------------------------------------------------------------- /02_09ParticleSystem04/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_09ParticleSystem04/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_09ParticleSystem04/bin/data/particle32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/bin/data/particle32.png -------------------------------------------------------------------------------- /02_09ParticleSystem04/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/config.make -------------------------------------------------------------------------------- /02_09ParticleSystem04/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_09ParticleSystem04/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/src/Particle.cpp -------------------------------------------------------------------------------- /02_09ParticleSystem04/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/src/Particle.h -------------------------------------------------------------------------------- /02_09ParticleSystem04/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/src/main.cpp -------------------------------------------------------------------------------- /02_09ParticleSystem04/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/src/testApp.cpp -------------------------------------------------------------------------------- /02_09ParticleSystem04/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_09ParticleSystem04/src/testApp.h -------------------------------------------------------------------------------- /02_10ParticleSystem05/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/Makefile -------------------------------------------------------------------------------- /02_10ParticleSystem05/Particles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/Particles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_10ParticleSystem05/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_10ParticleSystem05/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_10ParticleSystem05/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/Project.xcconfig -------------------------------------------------------------------------------- /02_10ParticleSystem05/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_10ParticleSystem05/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_10ParticleSystem05/bin/data/particle32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/bin/data/particle32.png -------------------------------------------------------------------------------- /02_10ParticleSystem05/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/config.make -------------------------------------------------------------------------------- /02_10ParticleSystem05/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_10ParticleSystem05/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/src/Particle.cpp -------------------------------------------------------------------------------- /02_10ParticleSystem05/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/src/Particle.h -------------------------------------------------------------------------------- /02_10ParticleSystem05/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/src/main.cpp -------------------------------------------------------------------------------- /02_10ParticleSystem05/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/src/testApp.cpp -------------------------------------------------------------------------------- /02_10ParticleSystem05/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_10ParticleSystem05/src/testApp.h -------------------------------------------------------------------------------- /02_11ParticleSystem06/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/Makefile -------------------------------------------------------------------------------- /02_11ParticleSystem06/Particles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/Particles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_11ParticleSystem06/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Debug.xcscheme -------------------------------------------------------------------------------- /02_11ParticleSystem06/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/Particles.xcodeproj/xcshareddata/xcschemes/drawOneCircle Release.xcscheme -------------------------------------------------------------------------------- /02_11ParticleSystem06/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/Project.xcconfig -------------------------------------------------------------------------------- /02_11ParticleSystem06/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_11ParticleSystem06/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_11ParticleSystem06/bin/data/particle32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/bin/data/particle32.png -------------------------------------------------------------------------------- /02_11ParticleSystem06/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/config.make -------------------------------------------------------------------------------- /02_11ParticleSystem06/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_11ParticleSystem06/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/src/Particle.cpp -------------------------------------------------------------------------------- /02_11ParticleSystem06/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/src/Particle.h -------------------------------------------------------------------------------- /02_11ParticleSystem06/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/src/main.cpp -------------------------------------------------------------------------------- /02_11ParticleSystem06/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/src/testApp.cpp -------------------------------------------------------------------------------- /02_11ParticleSystem06/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/02_11ParticleSystem06/src/testApp.h -------------------------------------------------------------------------------- /03_00_spring_pre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/Makefile -------------------------------------------------------------------------------- /03_00_spring_pre/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/Project.xcconfig -------------------------------------------------------------------------------- /03_00_spring_pre/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03_00_spring_pre/bin/data/particle32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/bin/data/particle32.png -------------------------------------------------------------------------------- /03_00_spring_pre/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/config.make -------------------------------------------------------------------------------- /03_00_spring_pre/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/openFrameworks-Info.plist -------------------------------------------------------------------------------- /03_00_spring_pre/spring.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/spring.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /03_00_spring_pre/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /03_00_spring_pre/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /03_00_spring_pre/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/src/Particle.cpp -------------------------------------------------------------------------------- /03_00_spring_pre/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/src/Particle.h -------------------------------------------------------------------------------- /03_00_spring_pre/src/Spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/src/Spring.cpp -------------------------------------------------------------------------------- /03_00_spring_pre/src/Spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/src/Spring.h -------------------------------------------------------------------------------- /03_00_spring_pre/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/src/main.cpp -------------------------------------------------------------------------------- /03_00_spring_pre/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/src/testApp.cpp -------------------------------------------------------------------------------- /03_00_spring_pre/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_00_spring_pre/src/testApp.h -------------------------------------------------------------------------------- /03_01_spring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/Makefile -------------------------------------------------------------------------------- /03_01_spring/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/Project.xcconfig -------------------------------------------------------------------------------- /03_01_spring/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03_01_spring/bin/data/particle32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/bin/data/particle32.png -------------------------------------------------------------------------------- /03_01_spring/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/config.make -------------------------------------------------------------------------------- /03_01_spring/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/openFrameworks-Info.plist -------------------------------------------------------------------------------- /03_01_spring/spring.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/spring.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /03_01_spring/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /03_01_spring/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /03_01_spring/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/src/Particle.cpp -------------------------------------------------------------------------------- /03_01_spring/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/src/Particle.h -------------------------------------------------------------------------------- /03_01_spring/src/Spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/src/Spring.cpp -------------------------------------------------------------------------------- /03_01_spring/src/Spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/src/Spring.h -------------------------------------------------------------------------------- /03_01_spring/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/src/main.cpp -------------------------------------------------------------------------------- /03_01_spring/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/src/testApp.cpp -------------------------------------------------------------------------------- /03_01_spring/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_01_spring/src/testApp.h -------------------------------------------------------------------------------- /03_02_springs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/Makefile -------------------------------------------------------------------------------- /03_02_springs/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/Project.xcconfig -------------------------------------------------------------------------------- /03_02_springs/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03_02_springs/bin/data/particle32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/bin/data/particle32.png -------------------------------------------------------------------------------- /03_02_springs/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/config.make -------------------------------------------------------------------------------- /03_02_springs/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/openFrameworks-Info.plist -------------------------------------------------------------------------------- /03_02_springs/spring.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/spring.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /03_02_springs/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /03_02_springs/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /03_02_springs/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/src/Particle.cpp -------------------------------------------------------------------------------- /03_02_springs/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/src/Particle.h -------------------------------------------------------------------------------- /03_02_springs/src/Spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/src/Spring.cpp -------------------------------------------------------------------------------- /03_02_springs/src/Spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/src/Spring.h -------------------------------------------------------------------------------- /03_02_springs/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/src/main.cpp -------------------------------------------------------------------------------- /03_02_springs/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/src/testApp.cpp -------------------------------------------------------------------------------- /03_02_springs/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_02_springs/src/testApp.h -------------------------------------------------------------------------------- /03_03_springsMultiForces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/Makefile -------------------------------------------------------------------------------- /03_03_springsMultiForces/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/Project.xcconfig -------------------------------------------------------------------------------- /03_03_springsMultiForces/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03_03_springsMultiForces/bin/data/particle32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/bin/data/particle32.png -------------------------------------------------------------------------------- /03_03_springsMultiForces/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/config.make -------------------------------------------------------------------------------- /03_03_springsMultiForces/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/openFrameworks-Info.plist -------------------------------------------------------------------------------- /03_03_springsMultiForces/spring.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/spring.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /03_03_springsMultiForces/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /03_03_springsMultiForces/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/spring.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /03_03_springsMultiForces/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/src/Particle.cpp -------------------------------------------------------------------------------- /03_03_springsMultiForces/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/src/Particle.h -------------------------------------------------------------------------------- /03_03_springsMultiForces/src/Spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/src/Spring.cpp -------------------------------------------------------------------------------- /03_03_springsMultiForces/src/Spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/src/Spring.h -------------------------------------------------------------------------------- /03_03_springsMultiForces/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/src/main.cpp -------------------------------------------------------------------------------- /03_03_springsMultiForces/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/src/testApp.cpp -------------------------------------------------------------------------------- /03_03_springsMultiForces/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_03_springsMultiForces/src/testApp.h -------------------------------------------------------------------------------- /03_05_vectorField/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/Makefile -------------------------------------------------------------------------------- /03_05_vectorField/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/Project.xcconfig -------------------------------------------------------------------------------- /03_05_vectorField/VectorField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/VectorField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /03_05_vectorField/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /03_05_vectorField/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /03_05_vectorField/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/config.make -------------------------------------------------------------------------------- /03_05_vectorField/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/openFrameworks-Info.plist -------------------------------------------------------------------------------- /03_05_vectorField/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/src/main.cpp -------------------------------------------------------------------------------- /03_05_vectorField/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/src/testApp.cpp -------------------------------------------------------------------------------- /03_05_vectorField/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/src/testApp.h -------------------------------------------------------------------------------- /03_05_vectorField/src/vectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/src/vectorField.cpp -------------------------------------------------------------------------------- /03_05_vectorField/src/vectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_05_vectorField/src/vectorField.h -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/Makefile -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/Project.xcconfig -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/VectorField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/VectorField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/config.make -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/openFrameworks-Info.plist -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/src/Particle.cpp -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/src/Particle.h -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/src/main.cpp -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/src/testApp.cpp -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/src/testApp.h -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/src/vectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/src/vectorField.cpp -------------------------------------------------------------------------------- /03_06_vectorFieldParticle/src/vectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_06_vectorFieldParticle/src/vectorField.h -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/Makefile -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/Project.xcconfig -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/VectorField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/VectorField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/VectorField.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/config.make -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/openFrameworks-Info.plist -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/src/Particle.cpp -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/src/Particle.h -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/src/main.cpp -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/src/testApp.cpp -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/src/testApp.h -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/src/vectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/src/vectorField.cpp -------------------------------------------------------------------------------- /03_07_vectorFieldDrawings/src/vectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/03_07_vectorFieldDrawings/src/vectorField.h -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/Makefile -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/Project.xcconfig -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/bin/data/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/bin/data/settings.xml -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/config.make -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/ofxGuiSimple.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/ofxGuiSimple.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/ofxGuiSimple.xcodeproj/xcshareddata/xcschemes/ofxGuiSimple Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/ofxGuiSimple.xcodeproj/xcshareddata/xcschemes/ofxGuiSimple Debug.xcscheme -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/ofxGuiSimple.xcodeproj/xcshareddata/xcschemes/ofxGuiSimple Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/ofxGuiSimple.xcodeproj/xcshareddata/xcschemes/ofxGuiSimple Release.xcscheme -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/openFrameworks-Info.plist -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/src/main.cpp -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/src/testApp.cpp -------------------------------------------------------------------------------- /04_01_ofxGuiSimple/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_01_ofxGuiSimple/src/testApp.h -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/Makefile -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/Project.xcconfig -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/bin/data/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/bin/data/settings.xml -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/config.make -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/ofxGuiVectorField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/ofxGuiVectorField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/ofxGuiVectorField.xcodeproj/xcshareddata/xcschemes/ofxGuiSimple Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/ofxGuiVectorField.xcodeproj/xcshareddata/xcschemes/ofxGuiSimple Debug.xcscheme -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/ofxGuiVectorField.xcodeproj/xcshareddata/xcschemes/ofxGuiSimple Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/ofxGuiVectorField.xcodeproj/xcshareddata/xcschemes/ofxGuiSimple Release.xcscheme -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/openFrameworks-Info.plist -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/src/Particle.cpp -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/src/Particle.h -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/src/main.cpp -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/src/testApp.cpp -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/src/testApp.h -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/src/vectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/src/vectorField.cpp -------------------------------------------------------------------------------- /04_02_ofxGuiVectorField/src/vectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_02_ofxGuiVectorField/src/vectorField.h -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_03_ofxBox2dExample/Makefile -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_03_ofxBox2dExample/Project.xcconfig -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxBox2d 2 | -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_03_ofxBox2dExample/config.make -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/ofxBox2dExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_03_ofxBox2dExample/ofxBox2dExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_03_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Debug.xcscheme -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_03_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Release.xcscheme -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_03_ofxBox2dExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_03_ofxBox2dExample/src/main.cpp -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_03_ofxBox2dExample/src/testApp.cpp -------------------------------------------------------------------------------- /04_03_ofxBox2dExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_03_ofxBox2dExample/src/testApp.h -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_04_ofxBox2dExample/Makefile -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_04_ofxBox2dExample/Project.xcconfig -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxBox2d 2 | -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_04_ofxBox2dExample/config.make -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/ofxBox2dExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_04_ofxBox2dExample/ofxBox2dExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_04_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Debug.xcscheme -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_04_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Release.xcscheme -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_04_ofxBox2dExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_04_ofxBox2dExample/src/main.cpp -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_04_ofxBox2dExample/src/testApp.cpp -------------------------------------------------------------------------------- /04_04_ofxBox2dExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_04_ofxBox2dExample/src/testApp.h -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_05_ofxBox2dExample/Makefile -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_05_ofxBox2dExample/Project.xcconfig -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxBox2d 2 | -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_05_ofxBox2dExample/config.make -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/ofxBox2dExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_05_ofxBox2dExample/ofxBox2dExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_05_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Debug.xcscheme -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_05_ofxBox2dExample/ofxBox2dExample.xcodeproj/xcshareddata/xcschemes/ofxBox2dExample Release.xcscheme -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_05_ofxBox2dExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_05_ofxBox2dExample/src/main.cpp -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_05_ofxBox2dExample/src/testApp.cpp -------------------------------------------------------------------------------- /04_05_ofxBox2dExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/04_05_ofxBox2dExample/src/testApp.h -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/Makefile -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/Project.xcconfig -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/addons.make -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/bin/data/fingers.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/bin/data/fingers.mov -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/config.make -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/openFrameworks-Info.plist -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/opencvExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/opencvExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Debug.xcscheme -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/opencvExample.xcodeproj/xcshareddata/xcschemes/opencvExample Release.xcscheme -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/src/main.cpp -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/src/testApp.cpp -------------------------------------------------------------------------------- /05_01_ofxOpenCvBasic/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_01_ofxOpenCvBasic/src/testApp.h -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_02_ofxCvContorFinder/Makefile -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_02_ofxCvContorFinder/Project.xcconfig -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/addons.make: -------------------------------------------------------------------------------- 1 | ofxOpenCv 2 | ofxCv 3 | -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_02_ofxCvContorFinder/config.make -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/ofxCvTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_02_ofxCvContorFinder/ofxCvTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/ofxCvTest.xcodeproj/xcshareddata/xcschemes/ofxCvTest Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_02_ofxCvContorFinder/ofxCvTest.xcodeproj/xcshareddata/xcschemes/ofxCvTest Debug.xcscheme -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/ofxCvTest.xcodeproj/xcshareddata/xcschemes/ofxCvTest Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_02_ofxCvContorFinder/ofxCvTest.xcodeproj/xcshareddata/xcschemes/ofxCvTest Release.xcscheme -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_02_ofxCvContorFinder/openFrameworks-Info.plist -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_02_ofxCvContorFinder/src/main.cpp -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_02_ofxCvContorFinder/src/testApp.cpp -------------------------------------------------------------------------------- /05_02_ofxCvContorFinder/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_02_ofxCvContorFinder/src/testApp.h -------------------------------------------------------------------------------- /05_03_ofxCvGUI/05_03_ofxCvGUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/05_03_ofxCvGUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /05_03_ofxCvGUI/05_03_ofxCvGUI.xcodeproj/xcshareddata/xcschemes/05_03_ofxCvGUI Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/05_03_ofxCvGUI.xcodeproj/xcshareddata/xcschemes/05_03_ofxCvGUI Debug.xcscheme -------------------------------------------------------------------------------- /05_03_ofxCvGUI/05_03_ofxCvGUI.xcodeproj/xcshareddata/xcschemes/05_03_ofxCvGUI Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/05_03_ofxCvGUI.xcodeproj/xcshareddata/xcschemes/05_03_ofxCvGUI Release.xcscheme -------------------------------------------------------------------------------- /05_03_ofxCvGUI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/Makefile -------------------------------------------------------------------------------- /05_03_ofxCvGUI/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/Project.xcconfig -------------------------------------------------------------------------------- /05_03_ofxCvGUI/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/addons.make -------------------------------------------------------------------------------- /05_03_ofxCvGUI/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05_03_ofxCvGUI/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/config.make -------------------------------------------------------------------------------- /05_03_ofxCvGUI/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/openFrameworks-Info.plist -------------------------------------------------------------------------------- /05_03_ofxCvGUI/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/src/main.cpp -------------------------------------------------------------------------------- /05_03_ofxCvGUI/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/src/testApp.cpp -------------------------------------------------------------------------------- /05_03_ofxCvGUI/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_03_ofxCvGUI/src/testApp.h -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/Makefile -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/Project.xcconfig -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/addons.make -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/config.make -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/ofxCvOpticalFlowGUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/ofxCvOpticalFlowGUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/ofxCvOpticalFlowGUI.xcodeproj/xcshareddata/xcschemes/ofxCvOpticalFlowGUI Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/ofxCvOpticalFlowGUI.xcodeproj/xcshareddata/xcschemes/ofxCvOpticalFlowGUI Debug.xcscheme -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/ofxCvOpticalFlowGUI.xcodeproj/xcshareddata/xcschemes/ofxCvOpticalFlowGUI Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/ofxCvOpticalFlowGUI.xcodeproj/xcshareddata/xcschemes/ofxCvOpticalFlowGUI Release.xcscheme -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/openFrameworks-Info.plist -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/src/main.cpp -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/src/testApp.cpp -------------------------------------------------------------------------------- /05_04_ofxCvOpticalFlowGUI/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_04_ofxCvOpticalFlowGUI/src/testApp.h -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/Makefile -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/Project.xcconfig -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/addons.make -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/config.make -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/ofxCvOpticalFlowParticle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/ofxCvOpticalFlowParticle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/ofxCvOpticalFlowParticle.xcodeproj/xcshareddata/xcschemes/ofxCvOpticalFlowGUI Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/ofxCvOpticalFlowParticle.xcodeproj/xcshareddata/xcschemes/ofxCvOpticalFlowGUI Debug.xcscheme -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/ofxCvOpticalFlowParticle.xcodeproj/xcshareddata/xcschemes/ofxCvOpticalFlowGUI Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/ofxCvOpticalFlowParticle.xcodeproj/xcshareddata/xcschemes/ofxCvOpticalFlowGUI Release.xcscheme -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/openFrameworks-Info.plist -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/src/Particle.cpp -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/src/Particle.h -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/src/main.cpp -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/src/testApp.cpp -------------------------------------------------------------------------------- /05_05_ofxCvOpticalFlowParticle/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/05_05_ofxCvOpticalFlowParticle/src/testApp.h -------------------------------------------------------------------------------- /06_01_3dPrimitives/3dPrimitves.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_01_3dPrimitives/3dPrimitves.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /06_01_3dPrimitives/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_01_3dPrimitives/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /06_01_3dPrimitives/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_01_3dPrimitives/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /06_01_3dPrimitives/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_01_3dPrimitives/Makefile -------------------------------------------------------------------------------- /06_01_3dPrimitives/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_01_3dPrimitives/Project.xcconfig -------------------------------------------------------------------------------- /06_01_3dPrimitives/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_01_3dPrimitives/config.make -------------------------------------------------------------------------------- /06_01_3dPrimitives/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_01_3dPrimitives/openFrameworks-Info.plist -------------------------------------------------------------------------------- /06_01_3dPrimitives/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_01_3dPrimitives/src/main.cpp -------------------------------------------------------------------------------- /06_01_3dPrimitives/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_01_3dPrimitives/src/testApp.cpp -------------------------------------------------------------------------------- /06_01_3dPrimitives/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_01_3dPrimitives/src/testApp.h -------------------------------------------------------------------------------- /06_02_EasyCamWireframe/3dPrimitves.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_02_EasyCamWireframe/3dPrimitves.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /06_02_EasyCamWireframe/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_02_EasyCamWireframe/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /06_02_EasyCamWireframe/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_02_EasyCamWireframe/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /06_02_EasyCamWireframe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_02_EasyCamWireframe/Makefile -------------------------------------------------------------------------------- /06_02_EasyCamWireframe/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_02_EasyCamWireframe/Project.xcconfig -------------------------------------------------------------------------------- /06_02_EasyCamWireframe/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_02_EasyCamWireframe/config.make -------------------------------------------------------------------------------- /06_02_EasyCamWireframe/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_02_EasyCamWireframe/openFrameworks-Info.plist -------------------------------------------------------------------------------- /06_02_EasyCamWireframe/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_02_EasyCamWireframe/src/main.cpp -------------------------------------------------------------------------------- /06_02_EasyCamWireframe/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_02_EasyCamWireframe/src/testApp.cpp -------------------------------------------------------------------------------- /06_02_EasyCamWireframe/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_02_EasyCamWireframe/src/testApp.h -------------------------------------------------------------------------------- /06_03_EasyCamDraw/3dPrimitves.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_03_EasyCamDraw/3dPrimitves.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /06_03_EasyCamDraw/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_03_EasyCamDraw/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /06_03_EasyCamDraw/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_03_EasyCamDraw/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /06_03_EasyCamDraw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_03_EasyCamDraw/Makefile -------------------------------------------------------------------------------- /06_03_EasyCamDraw/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_03_EasyCamDraw/Project.xcconfig -------------------------------------------------------------------------------- /06_03_EasyCamDraw/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_03_EasyCamDraw/config.make -------------------------------------------------------------------------------- /06_03_EasyCamDraw/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_03_EasyCamDraw/openFrameworks-Info.plist -------------------------------------------------------------------------------- /06_03_EasyCamDraw/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_03_EasyCamDraw/src/main.cpp -------------------------------------------------------------------------------- /06_03_EasyCamDraw/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_03_EasyCamDraw/src/testApp.cpp -------------------------------------------------------------------------------- /06_03_EasyCamDraw/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_03_EasyCamDraw/src/testApp.h -------------------------------------------------------------------------------- /06_04_Lighting/3dPrimitves.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_04_Lighting/3dPrimitves.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /06_04_Lighting/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_04_Lighting/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /06_04_Lighting/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_04_Lighting/3dPrimitves.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /06_04_Lighting/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_04_Lighting/Makefile -------------------------------------------------------------------------------- /06_04_Lighting/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_04_Lighting/Project.xcconfig -------------------------------------------------------------------------------- /06_04_Lighting/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_04_Lighting/config.make -------------------------------------------------------------------------------- /06_04_Lighting/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_04_Lighting/openFrameworks-Info.plist -------------------------------------------------------------------------------- /06_04_Lighting/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_04_Lighting/src/main.cpp -------------------------------------------------------------------------------- /06_04_Lighting/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_04_Lighting/src/testApp.cpp -------------------------------------------------------------------------------- /06_04_Lighting/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_04_Lighting/src/testApp.h -------------------------------------------------------------------------------- /06_05_Mesh/3dMesh.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_05_Mesh/3dMesh.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /06_05_Mesh/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_05_Mesh/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /06_05_Mesh/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_05_Mesh/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /06_05_Mesh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_05_Mesh/Makefile -------------------------------------------------------------------------------- /06_05_Mesh/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_05_Mesh/Project.xcconfig -------------------------------------------------------------------------------- /06_05_Mesh/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_05_Mesh/config.make -------------------------------------------------------------------------------- /06_05_Mesh/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_05_Mesh/openFrameworks-Info.plist -------------------------------------------------------------------------------- /06_05_Mesh/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_05_Mesh/src/main.cpp -------------------------------------------------------------------------------- /06_05_Mesh/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_05_Mesh/src/testApp.cpp -------------------------------------------------------------------------------- /06_05_Mesh/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_05_Mesh/src/testApp.h -------------------------------------------------------------------------------- /06_06_MeshVBO/3dMesh.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_06_MeshVBO/3dMesh.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /06_06_MeshVBO/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_06_MeshVBO/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /06_06_MeshVBO/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_06_MeshVBO/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /06_06_MeshVBO/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_06_MeshVBO/Makefile -------------------------------------------------------------------------------- /06_06_MeshVBO/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_06_MeshVBO/Project.xcconfig -------------------------------------------------------------------------------- /06_06_MeshVBO/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_06_MeshVBO/config.make -------------------------------------------------------------------------------- /06_06_MeshVBO/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_06_MeshVBO/openFrameworks-Info.plist -------------------------------------------------------------------------------- /06_06_MeshVBO/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_06_MeshVBO/src/main.cpp -------------------------------------------------------------------------------- /06_06_MeshVBO/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_06_MeshVBO/src/testApp.cpp -------------------------------------------------------------------------------- /06_06_MeshVBO/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_06_MeshVBO/src/testApp.h -------------------------------------------------------------------------------- /06_07_MeshCam/3dMesh.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_07_MeshCam/3dMesh.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /06_07_MeshCam/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_07_MeshCam/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /06_07_MeshCam/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_07_MeshCam/3dMesh.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /06_07_MeshCam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_07_MeshCam/Makefile -------------------------------------------------------------------------------- /06_07_MeshCam/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_07_MeshCam/Project.xcconfig -------------------------------------------------------------------------------- /06_07_MeshCam/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_07_MeshCam/config.make -------------------------------------------------------------------------------- /06_07_MeshCam/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_07_MeshCam/openFrameworks-Info.plist -------------------------------------------------------------------------------- /06_07_MeshCam/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_07_MeshCam/src/main.cpp -------------------------------------------------------------------------------- /06_07_MeshCam/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_07_MeshCam/src/testApp.cpp -------------------------------------------------------------------------------- /06_07_MeshCam/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/06_07_MeshCam/src/testApp.h -------------------------------------------------------------------------------- /07_00_sceneExample_pre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/Makefile -------------------------------------------------------------------------------- /07_00_sceneExample_pre/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/Project.xcconfig -------------------------------------------------------------------------------- /07_00_sceneExample_pre/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/config.make -------------------------------------------------------------------------------- /07_00_sceneExample_pre/emptyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/emptyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /07_00_sceneExample_pre/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /07_00_sceneExample_pre/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /07_00_sceneExample_pre/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/openFrameworks-Info.plist -------------------------------------------------------------------------------- /07_00_sceneExample_pre/src/SceneA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/src/SceneA.cpp -------------------------------------------------------------------------------- /07_00_sceneExample_pre/src/SceneA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/src/SceneA.h -------------------------------------------------------------------------------- /07_00_sceneExample_pre/src/baseScene.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_00_sceneExample_pre/src/baseScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/src/baseScene.h -------------------------------------------------------------------------------- /07_00_sceneExample_pre/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/src/main.cpp -------------------------------------------------------------------------------- /07_00_sceneExample_pre/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/src/testApp.cpp -------------------------------------------------------------------------------- /07_00_sceneExample_pre/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_00_sceneExample_pre/src/testApp.h -------------------------------------------------------------------------------- /07_01_sceneExample_01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/Makefile -------------------------------------------------------------------------------- /07_01_sceneExample_01/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/Project.xcconfig -------------------------------------------------------------------------------- /07_01_sceneExample_01/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/config.make -------------------------------------------------------------------------------- /07_01_sceneExample_01/emptyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/emptyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /07_01_sceneExample_01/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /07_01_sceneExample_01/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /07_01_sceneExample_01/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/openFrameworks-Info.plist -------------------------------------------------------------------------------- /07_01_sceneExample_01/src/SceneA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/src/SceneA.cpp -------------------------------------------------------------------------------- /07_01_sceneExample_01/src/SceneA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/src/SceneA.h -------------------------------------------------------------------------------- /07_01_sceneExample_01/src/SceneB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/src/SceneB.cpp -------------------------------------------------------------------------------- /07_01_sceneExample_01/src/SceneB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/src/SceneB.h -------------------------------------------------------------------------------- /07_01_sceneExample_01/src/SceneC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/src/SceneC.cpp -------------------------------------------------------------------------------- /07_01_sceneExample_01/src/SceneC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/src/SceneC.h -------------------------------------------------------------------------------- /07_01_sceneExample_01/src/baseScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/src/baseScene.h -------------------------------------------------------------------------------- /07_01_sceneExample_01/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/src/main.cpp -------------------------------------------------------------------------------- /07_01_sceneExample_01/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/src/testApp.cpp -------------------------------------------------------------------------------- /07_01_sceneExample_01/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_01_sceneExample_01/src/testApp.h -------------------------------------------------------------------------------- /07_02_sceneExample_02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/Makefile -------------------------------------------------------------------------------- /07_02_sceneExample_02/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/Project.xcconfig -------------------------------------------------------------------------------- /07_02_sceneExample_02/bin/data/particle32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/bin/data/particle32.png -------------------------------------------------------------------------------- /07_02_sceneExample_02/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/config.make -------------------------------------------------------------------------------- /07_02_sceneExample_02/emptyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/emptyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /07_02_sceneExample_02/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /07_02_sceneExample_02/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /07_02_sceneExample_02/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/openFrameworks-Info.plist -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/Particle.cpp -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/Particle.h -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/SceneA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/SceneA.cpp -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/SceneA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/SceneA.h -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/SceneB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/SceneB.cpp -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/SceneB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/SceneB.h -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/SceneC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/SceneC.cpp -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/SceneC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/SceneC.h -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/baseScene.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/baseScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/baseScene.h -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/main.cpp -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/testApp.cpp -------------------------------------------------------------------------------- /07_02_sceneExample_02/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_02_sceneExample_02/src/testApp.h -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/Project.xcconfig -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/addons.make: -------------------------------------------------------------------------------- 1 | ofxStateMachine 2 | -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/bin/data/vag.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/bin/data/vag.ttf -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/ofxStateMachineExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/ofxStateMachineExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/openFrameworks-Info.plist -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/src/TemplateState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/src/TemplateState.cpp -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/src/TemplateState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/src/TemplateState.h -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/src/main.cpp -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/src/testApp.cpp -------------------------------------------------------------------------------- /07_03_StateMachineTemplate/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_03_StateMachineTemplate/src/testApp.h -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/Project.xcconfig -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/addons.make: -------------------------------------------------------------------------------- 1 | ofxStateMachine 2 | -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/bin/data/vag.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/bin/data/vag.ttf -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/ofxStateMachineExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/ofxStateMachineExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/openFrameworks-Info.plist -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/src/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/src/SharedData.h -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/src/TemplateState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/src/TemplateState.cpp -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/src/TemplateState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/src/TemplateState.h -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/src/main.cpp -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/src/testApp.cpp -------------------------------------------------------------------------------- /07_04_SharedDataTemplate/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_04_SharedDataTemplate/src/testApp.h -------------------------------------------------------------------------------- /07_05_StateMachineExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/Project.xcconfig -------------------------------------------------------------------------------- /07_05_StateMachineExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxStateMachine 2 | -------------------------------------------------------------------------------- /07_05_StateMachineExample/bin/data/particle32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/bin/data/particle32.png -------------------------------------------------------------------------------- /07_05_StateMachineExample/ofxStateMachineExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/ofxStateMachineExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /07_05_StateMachineExample/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /07_05_StateMachineExample/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/ofxStateMachineExample.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /07_05_StateMachineExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /07_05_StateMachineExample/src/BoxState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/src/BoxState.cpp -------------------------------------------------------------------------------- /07_05_StateMachineExample/src/BoxState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/src/BoxState.h -------------------------------------------------------------------------------- /07_05_StateMachineExample/src/CircleState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/src/CircleState.cpp -------------------------------------------------------------------------------- /07_05_StateMachineExample/src/CircleState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/src/CircleState.h -------------------------------------------------------------------------------- /07_05_StateMachineExample/src/ParticleState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/src/ParticleState.cpp -------------------------------------------------------------------------------- /07_05_StateMachineExample/src/ParticleState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/src/ParticleState.h -------------------------------------------------------------------------------- /07_05_StateMachineExample/src/SharedData.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class SharedData{ 4 | public: 5 | 6 | }; 7 | -------------------------------------------------------------------------------- /07_05_StateMachineExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/src/main.cpp -------------------------------------------------------------------------------- /07_05_StateMachineExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/src/testApp.cpp -------------------------------------------------------------------------------- /07_05_StateMachineExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/07_05_StateMachineExample/src/testApp.h -------------------------------------------------------------------------------- /08_00_OscSender/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_00_OscSender/Makefile -------------------------------------------------------------------------------- /08_00_OscSender/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_00_OscSender/Project.xcconfig -------------------------------------------------------------------------------- /08_00_OscSender/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_00_OscSender/config.make -------------------------------------------------------------------------------- /08_00_OscSender/emptyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_00_OscSender/emptyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /08_00_OscSender/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_00_OscSender/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /08_00_OscSender/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_00_OscSender/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /08_00_OscSender/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_00_OscSender/openFrameworks-Info.plist -------------------------------------------------------------------------------- /08_00_OscSender/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_00_OscSender/src/main.cpp -------------------------------------------------------------------------------- /08_00_OscSender/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_00_OscSender/src/testApp.cpp -------------------------------------------------------------------------------- /08_00_OscSender/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_00_OscSender/src/testApp.h -------------------------------------------------------------------------------- /08_01_OscReceiver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_01_OscReceiver/Makefile -------------------------------------------------------------------------------- /08_01_OscReceiver/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_01_OscReceiver/Project.xcconfig -------------------------------------------------------------------------------- /08_01_OscReceiver/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_01_OscReceiver/config.make -------------------------------------------------------------------------------- /08_01_OscReceiver/emptyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_01_OscReceiver/emptyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /08_01_OscReceiver/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_01_OscReceiver/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /08_01_OscReceiver/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_01_OscReceiver/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /08_01_OscReceiver/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_01_OscReceiver/openFrameworks-Info.plist -------------------------------------------------------------------------------- /08_01_OscReceiver/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_01_OscReceiver/src/main.cpp -------------------------------------------------------------------------------- /08_01_OscReceiver/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_01_OscReceiver/src/testApp.cpp -------------------------------------------------------------------------------- /08_01_OscReceiver/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_01_OscReceiver/src/testApp.h -------------------------------------------------------------------------------- /08_02_OscRingSender/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/Makefile -------------------------------------------------------------------------------- /08_02_OscRingSender/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/Project.xcconfig -------------------------------------------------------------------------------- /08_02_OscRingSender/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/config.make -------------------------------------------------------------------------------- /08_02_OscRingSender/emptyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/emptyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /08_02_OscRingSender/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /08_02_OscRingSender/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /08_02_OscRingSender/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/openFrameworks-Info.plist -------------------------------------------------------------------------------- /08_02_OscRingSender/src/Ring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/src/Ring.cpp -------------------------------------------------------------------------------- /08_02_OscRingSender/src/Ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/src/Ring.h -------------------------------------------------------------------------------- /08_02_OscRingSender/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/src/main.cpp -------------------------------------------------------------------------------- /08_02_OscRingSender/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/src/testApp.cpp -------------------------------------------------------------------------------- /08_02_OscRingSender/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_02_OscRingSender/src/testApp.h -------------------------------------------------------------------------------- /08_03_OscRingReceiver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/Makefile -------------------------------------------------------------------------------- /08_03_OscRingReceiver/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/Project.xcconfig -------------------------------------------------------------------------------- /08_03_OscRingReceiver/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/config.make -------------------------------------------------------------------------------- /08_03_OscRingReceiver/emptyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/emptyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /08_03_OscRingReceiver/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /08_03_OscRingReceiver/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /08_03_OscRingReceiver/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/openFrameworks-Info.plist -------------------------------------------------------------------------------- /08_03_OscRingReceiver/src/Ring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/src/Ring.cpp -------------------------------------------------------------------------------- /08_03_OscRingReceiver/src/Ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/src/Ring.h -------------------------------------------------------------------------------- /08_03_OscRingReceiver/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/src/main.cpp -------------------------------------------------------------------------------- /08_03_OscRingReceiver/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/src/testApp.cpp -------------------------------------------------------------------------------- /08_03_OscRingReceiver/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_03_OscRingReceiver/src/testApp.h -------------------------------------------------------------------------------- /08_04_ofxTuioExample01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_04_ofxTuioExample01/Makefile -------------------------------------------------------------------------------- /08_04_ofxTuioExample01/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_04_ofxTuioExample01/Project.xcconfig -------------------------------------------------------------------------------- /08_04_ofxTuioExample01/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_04_ofxTuioExample01/config.make -------------------------------------------------------------------------------- /08_04_ofxTuioExample01/emptyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_04_ofxTuioExample01/emptyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /08_04_ofxTuioExample01/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_04_ofxTuioExample01/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /08_04_ofxTuioExample01/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_04_ofxTuioExample01/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /08_04_ofxTuioExample01/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_04_ofxTuioExample01/openFrameworks-Info.plist -------------------------------------------------------------------------------- /08_04_ofxTuioExample01/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_04_ofxTuioExample01/src/main.cpp -------------------------------------------------------------------------------- /08_04_ofxTuioExample01/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_04_ofxTuioExample01/src/testApp.cpp -------------------------------------------------------------------------------- /08_04_ofxTuioExample01/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_04_ofxTuioExample01/src/testApp.h -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/Makefile -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/Project.xcconfig -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/bin/data/images/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/bin/data/images/photo.jpg -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/bin/data/images/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/bin/data/images/photo.png -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/config.make -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/emptyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/emptyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/openFrameworks-Info.plist -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/src/main.cpp -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/src/testApp.cpp -------------------------------------------------------------------------------- /08_05_ofxTuioExample02/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_05_ofxTuioExample02/src/testApp.h -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/Makefile -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/Project.xcconfig -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/bin/data/sounds/rainstick.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/bin/data/sounds/rainstick.aif -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/config.make -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/emptyExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/emptyExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Debug.xcscheme -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/emptyExample.xcodeproj/xcshareddata/xcschemes/emptyExample Release.xcscheme -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/openFrameworks-Info.plist -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/src/main.cpp -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/src/testApp.cpp -------------------------------------------------------------------------------- /08_06_ofxTuioExample03/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/08_06_ofxTuioExample03/src/testApp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/tau_ma2_13/HEAD/README.md --------------------------------------------------------------------------------