├── .gitignore ├── HOMEWORK.md ├── README.md ├── setup ├── README.md ├── github_clone_link.png └── github_create_repo.png ├── week02 ├── README.md ├── bouncing_square │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── bouncing_square.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── bouncing_square Debug.xcscheme │ │ │ └── bouncing_square Release.xcscheme │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Square.cpp │ │ ├── Square.h │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── bouncing_squares │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── bouncing_squares.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── bouncing_squares Debug.xcscheme │ │ │ └── bouncing_squares Release.xcscheme │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Square.cpp │ │ ├── Square.h │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── shapes │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ └── data │ │ └── .gitkeep │ ├── config.make │ ├── openFrameworks-Info.plist │ ├── shapes.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── shapes Debug.xcscheme │ │ └── shapes Release.xcscheme │ └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── week03 ├── README.md ├── README_IMGS │ ├── vector_coord.gif │ └── vector_coord.psd ├── gravity │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── config.make │ ├── gravity.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── gravity Debug.xcscheme │ │ │ └── gravity Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Ball.cpp │ │ ├── Ball.h │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── lerp_basic │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── config.make │ ├── lerp_basic.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── lerp_basic Debug.xcscheme │ │ │ └── lerp_basic Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── lerp_worm │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ └── data │ │ └── .gitkeep │ ├── config.make │ ├── lerp_worm.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── lerp_worm Debug.xcscheme │ │ └── lerp_worm Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── week05 ├── 01_vector_of_balls │ ├── 01_vector_of_balls.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 01_vector_of_balls Debug.xcscheme │ │ │ └── 01_vector_of_balls Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Ball.cpp │ │ ├── Ball.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 02_mass │ ├── 02_mass.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 02_mass Debug.xcscheme │ │ │ └── 02_mass Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Ball.cpp │ │ ├── Ball.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 03_noisy_followers │ ├── 03_noisy_followers.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 03_noisy_followers Debug.xcscheme │ │ │ └── 03_noisy_followers Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Arrow.cpp │ │ ├── Arrow.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 04_oscillation │ ├── 04_oscillation.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 04_oscillation Debug.xcscheme │ │ │ └── 04_oscillation Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 05_atan2 │ ├── 05_atan2.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 05_atan2 Debug.xcscheme │ │ │ └── 05_atan2 Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Arrow.cpp │ │ ├── Arrow.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 06_signal_plot │ ├── 06_signal_plot.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 06_signal_plot Debug.xcscheme │ │ │ └── 06_signal_plot Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Signal.cpp │ │ ├── Signal.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── README.md └── readme │ ├── 3dnoise.gif │ └── atan2.jpg ├── week06 ├── 01_particle_system │ ├── 01_particle_system.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 01_particle_system Debug.xcscheme │ │ │ └── 01_particle_system Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Particle.cpp │ │ ├── Particle.hpp │ │ ├── ParticleSystem.cpp │ │ ├── ParticleSystem.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 02_attraction │ ├── 02_attraction.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 02_attraction Debug.xcscheme │ │ │ └── 02_attraction Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Particle.cpp │ │ ├── Particle.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 03_attraction_repulsion │ ├── 03_attraction_repulsion.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 03_attraction_repulsion Debug.xcscheme │ │ │ └── 03_attraction_repulsion Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Mover.cpp │ │ ├── Mover.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 04_attractors │ ├── 04_attractors.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 04_attractors Debug.xcscheme │ │ │ └── 04_attractors Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Attractor.cpp │ │ ├── Attractor.hpp │ │ ├── Mover.cpp │ │ ├── Mover.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 05_elastic │ ├── 05_elastic.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 05_elastic Debug.xcscheme │ │ │ └── 05_elastic Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── ElasticMover.cpp │ │ ├── ElasticMover.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── README.md ├── week07 ├── 00_attraction-repulsion_in-class │ ├── 00_attraction-repulsion_in-class.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 00_attraction-repulsion_in-class Debug.xcscheme │ │ │ └── 00_attraction-repulsion_in-class Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Mover.cpp │ │ ├── Mover.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 01_attraction-repulsion_extra │ ├── 01_attraction-repulsion_extra.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 01_attraction-repulsion_extra Debug.xcscheme │ │ │ └── 01_attraction-repulsion_extra Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Mover.cpp │ │ ├── Mover.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── README.md ├── week08 ├── 01_sphere │ ├── 01_sphere.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 01_sphere Debug.xcscheme │ │ │ └── 01_sphere Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 02_bouncing_spheres │ ├── 02_bouncing_spheres.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 02_bouncing_spheres Debug.xcscheme │ │ │ └── 02_bouncing_spheres Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Box.hpp │ │ ├── Sphere.cpp │ │ ├── Sphere.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 03_drawing_3D │ ├── 03_drawing_3D.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 03_drawing_3D Debug.xcscheme │ │ │ └── 03_drawing_3D Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 04_noisy_sphere │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── README.md ├── week09 ├── 01_vector_field_in-class │ ├── 01_vector_field_in-class.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 01_vector_field_in-class Debug.xcscheme │ │ │ └── 01_vector_field_in-class Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Particle.cpp │ │ ├── Particle.hpp │ │ ├── VectorField.cpp │ │ ├── VectorField.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── 02_collision_example │ ├── 02_collision_example.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── 02_collision_example Debug.xcscheme │ │ └── 02_collision_example Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ ├── Ball.cpp │ ├── Ball.h │ ├── PaddleCircles.cpp │ ├── PaddleCircles.hpp │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── week11 ├── 01_plane_mesh_gui │ ├── 01_plane_mesh_gui.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 01_plane_mesh_gui Debug.xcscheme │ │ │ └── 01_plane_mesh_gui Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Plane.cpp │ │ ├── Plane.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 02_3d_basics │ ├── 02_3d_basics.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 02_3d_basics Debug.xcscheme │ │ │ └── 02_3d_basics Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 03_volcano_particles │ ├── 03_volcano_particles.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 03_volcano_particles Debug.xcscheme │ │ │ └── 03_volcano_particles Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── Particle.cpp │ │ ├── Particle.hpp │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── README.md ├── week12 ├── 01_mesh_faces │ ├── 01_mesh_faces.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 01_mesh_faces Debug.xcscheme │ │ │ └── 01_mesh_faces Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 02_mesh_webcam │ ├── 02_mesh_webcam.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 02_mesh_webcam Debug.xcscheme │ │ │ └── 02_mesh_webcam Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 03_color_channels │ ├── 03_color_channels.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 03_color_channels Debug.xcscheme │ │ │ └── 03_color_channels Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 04_pixel_data │ ├── 04_pixel_data.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 04_pixel_data Debug.xcscheme │ │ │ └── 04_pixel_data Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 05_glitch │ ├── 05_glitch.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 05_glitch Debug.xcscheme │ │ │ └── 05_glitch Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── video.mp4 │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 06_mesh_texture │ ├── 06_mesh_texture.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 06_mesh_texture Debug.xcscheme │ │ │ └── 06_mesh_texture Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── earth_texture.jpg │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 07_OSC_mouse │ ├── 07_OSC_mouse.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 07_OSC_mouse Debug.xcscheme │ │ │ └── 07_OSC_mouse Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ ├── oscMouseExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── oscMouseExample Debug.xcscheme │ │ │ └── oscMouseExample Release.xcscheme │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── README.md ├── normals.png ├── of_primitive_modes.png └── square_mesh_triangles.png ├── week13 ├── 01_3D_normals │ ├── 01_3D_normals.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 01_3D_normals Debug.xcscheme │ │ │ └── 01_3D_normals Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── 02_3D_terrain │ ├── 02_3D_terrain.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── 02_3D_terrain Debug.xcscheme │ │ └── 02_3D_terrain Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ └── data │ │ ├── crater_depth.jpg │ │ └── crater_texture.jpg │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ ├── Terrain.cpp │ ├── Terrain.hpp │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── week14 ├── 01_shader_mask │ ├── 03_shader_mask.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 03_shader_mask Debug.xcscheme │ │ │ └── 03_shader_mask Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ ├── image.jpg │ │ │ ├── mask.jpg │ │ │ └── shaders │ │ │ ├── mask.frag │ │ │ └── mask.vert │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 02_fragment_shader_in-class │ ├── 02_fragment_shader_in-class.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 02_fragment_shader_in-class Debug.xcscheme │ │ │ └── 02_fragment_shader_in-class Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ ├── shader.frag │ │ │ └── shader.vert │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 03_vertex_shader │ ├── 03_vertex_shader.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 03_vertex_shader Debug.xcscheme │ │ │ └── 03_vertex_shader Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ ├── shader.frag │ │ │ └── shader.vert │ ├── config.make │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── README.md └── week15 ├── 01_wk13_face_tracker ├── 01_wk13_face_tracker.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── 01_wk13_face_tracker Debug.xcscheme │ │ └── 01_wk13_face_tracker Release.xcscheme ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── haarcascade_eye.xml │ │ ├── haarcascade_eye_tree_eyeglasses.xml │ │ ├── haarcascade_frontalcatface.xml │ │ ├── haarcascade_frontalcatface_extended.xml │ │ ├── haarcascade_frontalface_alt.xml │ │ ├── haarcascade_frontalface_alt2.xml │ │ ├── haarcascade_frontalface_alt_tree.xml │ │ ├── haarcascade_frontalface_default.xml │ │ ├── haarcascade_fullbody.xml │ │ ├── haarcascade_lefteye_2splits.xml │ │ ├── haarcascade_licence_plate_rus_16stages.xml │ │ ├── haarcascade_lowerbody.xml │ │ ├── haarcascade_mcs_mouth.xml │ │ ├── haarcascade_profileface.xml │ │ ├── haarcascade_righteye_2splits.xml │ │ ├── haarcascade_russian_plate_number.xml │ │ ├── haarcascade_smile.xml │ │ ├── haarcascade_smile1.xml │ │ ├── haarcascade_upperbody.xml │ │ └── haarcascade_wallclock.xml ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── 02_ofPath_to_mesh ├── 02_ofPath_to_mesh.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── 02_ofPath_to_mesh Debug.xcscheme │ │ └── 02_ofPath_to_mesh Release.xcscheme ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── fractal.jpg │ │ ├── shader.frag │ │ └── shader.vert ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── 03_kinect_contours ├── addons.make ├── bin │ └── data │ │ └── .gitkeep └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/.gitignore -------------------------------------------------------------------------------- /HOMEWORK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/HOMEWORK.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/README.md -------------------------------------------------------------------------------- /setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/setup/README.md -------------------------------------------------------------------------------- /setup/github_clone_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/setup/github_clone_link.png -------------------------------------------------------------------------------- /setup/github_create_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/setup/github_create_repo.png -------------------------------------------------------------------------------- /week02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/README.md -------------------------------------------------------------------------------- /week02/bouncing_square/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/Makefile -------------------------------------------------------------------------------- /week02/bouncing_square/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/Project.xcconfig -------------------------------------------------------------------------------- /week02/bouncing_square/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week02/bouncing_square/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week02/bouncing_square/bouncing_square.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/bouncing_square.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week02/bouncing_square/bouncing_square.xcodeproj/xcshareddata/xcschemes/bouncing_square Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/bouncing_square.xcodeproj/xcshareddata/xcschemes/bouncing_square Debug.xcscheme -------------------------------------------------------------------------------- /week02/bouncing_square/bouncing_square.xcodeproj/xcshareddata/xcschemes/bouncing_square Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/bouncing_square.xcodeproj/xcshareddata/xcschemes/bouncing_square Release.xcscheme -------------------------------------------------------------------------------- /week02/bouncing_square/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/config.make -------------------------------------------------------------------------------- /week02/bouncing_square/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week02/bouncing_square/src/Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/src/Square.cpp -------------------------------------------------------------------------------- /week02/bouncing_square/src/Square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/src/Square.h -------------------------------------------------------------------------------- /week02/bouncing_square/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/src/main.cpp -------------------------------------------------------------------------------- /week02/bouncing_square/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/src/ofApp.cpp -------------------------------------------------------------------------------- /week02/bouncing_square/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_square/src/ofApp.h -------------------------------------------------------------------------------- /week02/bouncing_squares/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/Makefile -------------------------------------------------------------------------------- /week02/bouncing_squares/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/Project.xcconfig -------------------------------------------------------------------------------- /week02/bouncing_squares/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week02/bouncing_squares/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week02/bouncing_squares/bouncing_squares.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/bouncing_squares.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week02/bouncing_squares/bouncing_squares.xcodeproj/xcshareddata/xcschemes/bouncing_squares Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/bouncing_squares.xcodeproj/xcshareddata/xcschemes/bouncing_squares Debug.xcscheme -------------------------------------------------------------------------------- /week02/bouncing_squares/bouncing_squares.xcodeproj/xcshareddata/xcschemes/bouncing_squares Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/bouncing_squares.xcodeproj/xcshareddata/xcschemes/bouncing_squares Release.xcscheme -------------------------------------------------------------------------------- /week02/bouncing_squares/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/config.make -------------------------------------------------------------------------------- /week02/bouncing_squares/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week02/bouncing_squares/src/Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/src/Square.cpp -------------------------------------------------------------------------------- /week02/bouncing_squares/src/Square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/src/Square.h -------------------------------------------------------------------------------- /week02/bouncing_squares/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/src/main.cpp -------------------------------------------------------------------------------- /week02/bouncing_squares/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/src/ofApp.cpp -------------------------------------------------------------------------------- /week02/bouncing_squares/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/bouncing_squares/src/ofApp.h -------------------------------------------------------------------------------- /week02/shapes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/shapes/Makefile -------------------------------------------------------------------------------- /week02/shapes/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/shapes/Project.xcconfig -------------------------------------------------------------------------------- /week02/shapes/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week02/shapes/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week02/shapes/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/shapes/config.make -------------------------------------------------------------------------------- /week02/shapes/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/shapes/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week02/shapes/shapes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/shapes/shapes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week02/shapes/shapes.xcodeproj/xcshareddata/xcschemes/shapes Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/shapes/shapes.xcodeproj/xcshareddata/xcschemes/shapes Debug.xcscheme -------------------------------------------------------------------------------- /week02/shapes/shapes.xcodeproj/xcshareddata/xcschemes/shapes Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/shapes/shapes.xcodeproj/xcshareddata/xcschemes/shapes Release.xcscheme -------------------------------------------------------------------------------- /week02/shapes/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/shapes/src/main.cpp -------------------------------------------------------------------------------- /week02/shapes/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/shapes/src/ofApp.cpp -------------------------------------------------------------------------------- /week02/shapes/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week02/shapes/src/ofApp.h -------------------------------------------------------------------------------- /week03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/README.md -------------------------------------------------------------------------------- /week03/README_IMGS/vector_coord.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/README_IMGS/vector_coord.gif -------------------------------------------------------------------------------- /week03/README_IMGS/vector_coord.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/README_IMGS/vector_coord.psd -------------------------------------------------------------------------------- /week03/gravity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/Makefile -------------------------------------------------------------------------------- /week03/gravity/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/Project.xcconfig -------------------------------------------------------------------------------- /week03/gravity/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week03/gravity/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week03/gravity/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/config.make -------------------------------------------------------------------------------- /week03/gravity/gravity.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/gravity.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week03/gravity/gravity.xcodeproj/xcshareddata/xcschemes/gravity Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/gravity.xcodeproj/xcshareddata/xcschemes/gravity Debug.xcscheme -------------------------------------------------------------------------------- /week03/gravity/gravity.xcodeproj/xcshareddata/xcschemes/gravity Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/gravity.xcodeproj/xcshareddata/xcschemes/gravity Release.xcscheme -------------------------------------------------------------------------------- /week03/gravity/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week03/gravity/src/Ball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/src/Ball.cpp -------------------------------------------------------------------------------- /week03/gravity/src/Ball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/src/Ball.h -------------------------------------------------------------------------------- /week03/gravity/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/src/main.cpp -------------------------------------------------------------------------------- /week03/gravity/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/src/ofApp.cpp -------------------------------------------------------------------------------- /week03/gravity/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/gravity/src/ofApp.h -------------------------------------------------------------------------------- /week03/lerp_basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_basic/Makefile -------------------------------------------------------------------------------- /week03/lerp_basic/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_basic/Project.xcconfig -------------------------------------------------------------------------------- /week03/lerp_basic/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week03/lerp_basic/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week03/lerp_basic/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_basic/config.make -------------------------------------------------------------------------------- /week03/lerp_basic/lerp_basic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_basic/lerp_basic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week03/lerp_basic/lerp_basic.xcodeproj/xcshareddata/xcschemes/lerp_basic Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_basic/lerp_basic.xcodeproj/xcshareddata/xcschemes/lerp_basic Debug.xcscheme -------------------------------------------------------------------------------- /week03/lerp_basic/lerp_basic.xcodeproj/xcshareddata/xcschemes/lerp_basic Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_basic/lerp_basic.xcodeproj/xcshareddata/xcschemes/lerp_basic Release.xcscheme -------------------------------------------------------------------------------- /week03/lerp_basic/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_basic/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week03/lerp_basic/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_basic/src/main.cpp -------------------------------------------------------------------------------- /week03/lerp_basic/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_basic/src/ofApp.cpp -------------------------------------------------------------------------------- /week03/lerp_basic/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_basic/src/ofApp.h -------------------------------------------------------------------------------- /week03/lerp_worm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_worm/Makefile -------------------------------------------------------------------------------- /week03/lerp_worm/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_worm/Project.xcconfig -------------------------------------------------------------------------------- /week03/lerp_worm/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week03/lerp_worm/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week03/lerp_worm/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_worm/config.make -------------------------------------------------------------------------------- /week03/lerp_worm/lerp_worm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_worm/lerp_worm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week03/lerp_worm/lerp_worm.xcodeproj/xcshareddata/xcschemes/lerp_worm Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_worm/lerp_worm.xcodeproj/xcshareddata/xcschemes/lerp_worm Debug.xcscheme -------------------------------------------------------------------------------- /week03/lerp_worm/lerp_worm.xcodeproj/xcshareddata/xcschemes/lerp_worm Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_worm/lerp_worm.xcodeproj/xcshareddata/xcschemes/lerp_worm Release.xcscheme -------------------------------------------------------------------------------- /week03/lerp_worm/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_worm/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week03/lerp_worm/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_worm/src/main.cpp -------------------------------------------------------------------------------- /week03/lerp_worm/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_worm/src/ofApp.cpp -------------------------------------------------------------------------------- /week03/lerp_worm/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week03/lerp_worm/src/ofApp.h -------------------------------------------------------------------------------- /week05/01_vector_of_balls/01_vector_of_balls.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/01_vector_of_balls.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week05/01_vector_of_balls/01_vector_of_balls.xcodeproj/xcshareddata/xcschemes/01_vector_of_balls Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/01_vector_of_balls.xcodeproj/xcshareddata/xcschemes/01_vector_of_balls Debug.xcscheme -------------------------------------------------------------------------------- /week05/01_vector_of_balls/01_vector_of_balls.xcodeproj/xcshareddata/xcschemes/01_vector_of_balls Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/01_vector_of_balls.xcodeproj/xcshareddata/xcschemes/01_vector_of_balls Release.xcscheme -------------------------------------------------------------------------------- /week05/01_vector_of_balls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/Makefile -------------------------------------------------------------------------------- /week05/01_vector_of_balls/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/Project.xcconfig -------------------------------------------------------------------------------- /week05/01_vector_of_balls/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week05/01_vector_of_balls/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/config.make -------------------------------------------------------------------------------- /week05/01_vector_of_balls/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week05/01_vector_of_balls/src/Ball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/src/Ball.cpp -------------------------------------------------------------------------------- /week05/01_vector_of_balls/src/Ball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/src/Ball.hpp -------------------------------------------------------------------------------- /week05/01_vector_of_balls/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/src/main.cpp -------------------------------------------------------------------------------- /week05/01_vector_of_balls/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/src/ofApp.cpp -------------------------------------------------------------------------------- /week05/01_vector_of_balls/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/01_vector_of_balls/src/ofApp.h -------------------------------------------------------------------------------- /week05/02_mass/02_mass.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/02_mass.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week05/02_mass/02_mass.xcodeproj/xcshareddata/xcschemes/02_mass Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/02_mass.xcodeproj/xcshareddata/xcschemes/02_mass Debug.xcscheme -------------------------------------------------------------------------------- /week05/02_mass/02_mass.xcodeproj/xcshareddata/xcschemes/02_mass Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/02_mass.xcodeproj/xcshareddata/xcschemes/02_mass Release.xcscheme -------------------------------------------------------------------------------- /week05/02_mass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/Makefile -------------------------------------------------------------------------------- /week05/02_mass/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/Project.xcconfig -------------------------------------------------------------------------------- /week05/02_mass/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week05/02_mass/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/config.make -------------------------------------------------------------------------------- /week05/02_mass/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week05/02_mass/src/Ball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/src/Ball.cpp -------------------------------------------------------------------------------- /week05/02_mass/src/Ball.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/src/Ball.hpp -------------------------------------------------------------------------------- /week05/02_mass/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/src/main.cpp -------------------------------------------------------------------------------- /week05/02_mass/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/src/ofApp.cpp -------------------------------------------------------------------------------- /week05/02_mass/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/02_mass/src/ofApp.h -------------------------------------------------------------------------------- /week05/03_noisy_followers/03_noisy_followers.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/03_noisy_followers.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week05/03_noisy_followers/03_noisy_followers.xcodeproj/xcshareddata/xcschemes/03_noisy_followers Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/03_noisy_followers.xcodeproj/xcshareddata/xcschemes/03_noisy_followers Debug.xcscheme -------------------------------------------------------------------------------- /week05/03_noisy_followers/03_noisy_followers.xcodeproj/xcshareddata/xcschemes/03_noisy_followers Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/03_noisy_followers.xcodeproj/xcshareddata/xcschemes/03_noisy_followers Release.xcscheme -------------------------------------------------------------------------------- /week05/03_noisy_followers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/Makefile -------------------------------------------------------------------------------- /week05/03_noisy_followers/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/Project.xcconfig -------------------------------------------------------------------------------- /week05/03_noisy_followers/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week05/03_noisy_followers/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/config.make -------------------------------------------------------------------------------- /week05/03_noisy_followers/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week05/03_noisy_followers/src/Arrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/src/Arrow.cpp -------------------------------------------------------------------------------- /week05/03_noisy_followers/src/Arrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/src/Arrow.hpp -------------------------------------------------------------------------------- /week05/03_noisy_followers/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/src/main.cpp -------------------------------------------------------------------------------- /week05/03_noisy_followers/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/src/ofApp.cpp -------------------------------------------------------------------------------- /week05/03_noisy_followers/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/03_noisy_followers/src/ofApp.h -------------------------------------------------------------------------------- /week05/04_oscillation/04_oscillation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/04_oscillation/04_oscillation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week05/04_oscillation/04_oscillation.xcodeproj/xcshareddata/xcschemes/04_oscillation Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/04_oscillation/04_oscillation.xcodeproj/xcshareddata/xcschemes/04_oscillation Debug.xcscheme -------------------------------------------------------------------------------- /week05/04_oscillation/04_oscillation.xcodeproj/xcshareddata/xcschemes/04_oscillation Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/04_oscillation/04_oscillation.xcodeproj/xcshareddata/xcschemes/04_oscillation Release.xcscheme -------------------------------------------------------------------------------- /week05/04_oscillation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/04_oscillation/Makefile -------------------------------------------------------------------------------- /week05/04_oscillation/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/04_oscillation/Project.xcconfig -------------------------------------------------------------------------------- /week05/04_oscillation/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week05/04_oscillation/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/04_oscillation/config.make -------------------------------------------------------------------------------- /week05/04_oscillation/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/04_oscillation/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week05/04_oscillation/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/04_oscillation/src/main.cpp -------------------------------------------------------------------------------- /week05/04_oscillation/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/04_oscillation/src/ofApp.cpp -------------------------------------------------------------------------------- /week05/04_oscillation/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/04_oscillation/src/ofApp.h -------------------------------------------------------------------------------- /week05/05_atan2/05_atan2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/05_atan2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week05/05_atan2/05_atan2.xcodeproj/xcshareddata/xcschemes/05_atan2 Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/05_atan2.xcodeproj/xcshareddata/xcschemes/05_atan2 Debug.xcscheme -------------------------------------------------------------------------------- /week05/05_atan2/05_atan2.xcodeproj/xcshareddata/xcschemes/05_atan2 Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/05_atan2.xcodeproj/xcshareddata/xcschemes/05_atan2 Release.xcscheme -------------------------------------------------------------------------------- /week05/05_atan2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/Makefile -------------------------------------------------------------------------------- /week05/05_atan2/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/Project.xcconfig -------------------------------------------------------------------------------- /week05/05_atan2/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week05/05_atan2/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/config.make -------------------------------------------------------------------------------- /week05/05_atan2/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week05/05_atan2/src/Arrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/src/Arrow.cpp -------------------------------------------------------------------------------- /week05/05_atan2/src/Arrow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/src/Arrow.hpp -------------------------------------------------------------------------------- /week05/05_atan2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/src/main.cpp -------------------------------------------------------------------------------- /week05/05_atan2/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/src/ofApp.cpp -------------------------------------------------------------------------------- /week05/05_atan2/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/05_atan2/src/ofApp.h -------------------------------------------------------------------------------- /week05/06_signal_plot/06_signal_plot.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/06_signal_plot.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week05/06_signal_plot/06_signal_plot.xcodeproj/xcshareddata/xcschemes/06_signal_plot Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/06_signal_plot.xcodeproj/xcshareddata/xcschemes/06_signal_plot Debug.xcscheme -------------------------------------------------------------------------------- /week05/06_signal_plot/06_signal_plot.xcodeproj/xcshareddata/xcschemes/06_signal_plot Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/06_signal_plot.xcodeproj/xcshareddata/xcschemes/06_signal_plot Release.xcscheme -------------------------------------------------------------------------------- /week05/06_signal_plot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/Makefile -------------------------------------------------------------------------------- /week05/06_signal_plot/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/Project.xcconfig -------------------------------------------------------------------------------- /week05/06_signal_plot/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week05/06_signal_plot/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/config.make -------------------------------------------------------------------------------- /week05/06_signal_plot/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week05/06_signal_plot/src/Signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/src/Signal.cpp -------------------------------------------------------------------------------- /week05/06_signal_plot/src/Signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/src/Signal.hpp -------------------------------------------------------------------------------- /week05/06_signal_plot/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/src/main.cpp -------------------------------------------------------------------------------- /week05/06_signal_plot/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/src/ofApp.cpp -------------------------------------------------------------------------------- /week05/06_signal_plot/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/06_signal_plot/src/ofApp.h -------------------------------------------------------------------------------- /week05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/README.md -------------------------------------------------------------------------------- /week05/readme/3dnoise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/readme/3dnoise.gif -------------------------------------------------------------------------------- /week05/readme/atan2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week05/readme/atan2.jpg -------------------------------------------------------------------------------- /week06/01_particle_system/01_particle_system.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/01_particle_system.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week06/01_particle_system/01_particle_system.xcodeproj/xcshareddata/xcschemes/01_particle_system Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/01_particle_system.xcodeproj/xcshareddata/xcschemes/01_particle_system Debug.xcscheme -------------------------------------------------------------------------------- /week06/01_particle_system/01_particle_system.xcodeproj/xcshareddata/xcschemes/01_particle_system Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/01_particle_system.xcodeproj/xcshareddata/xcschemes/01_particle_system Release.xcscheme -------------------------------------------------------------------------------- /week06/01_particle_system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/Makefile -------------------------------------------------------------------------------- /week06/01_particle_system/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/Project.xcconfig -------------------------------------------------------------------------------- /week06/01_particle_system/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week06/01_particle_system/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/config.make -------------------------------------------------------------------------------- /week06/01_particle_system/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week06/01_particle_system/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/src/Particle.cpp -------------------------------------------------------------------------------- /week06/01_particle_system/src/Particle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/src/Particle.hpp -------------------------------------------------------------------------------- /week06/01_particle_system/src/ParticleSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/src/ParticleSystem.cpp -------------------------------------------------------------------------------- /week06/01_particle_system/src/ParticleSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/src/ParticleSystem.hpp -------------------------------------------------------------------------------- /week06/01_particle_system/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/src/main.cpp -------------------------------------------------------------------------------- /week06/01_particle_system/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/src/ofApp.cpp -------------------------------------------------------------------------------- /week06/01_particle_system/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/01_particle_system/src/ofApp.h -------------------------------------------------------------------------------- /week06/02_attraction/02_attraction.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/02_attraction.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week06/02_attraction/02_attraction.xcodeproj/xcshareddata/xcschemes/02_attraction Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/02_attraction.xcodeproj/xcshareddata/xcschemes/02_attraction Debug.xcscheme -------------------------------------------------------------------------------- /week06/02_attraction/02_attraction.xcodeproj/xcshareddata/xcschemes/02_attraction Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/02_attraction.xcodeproj/xcshareddata/xcschemes/02_attraction Release.xcscheme -------------------------------------------------------------------------------- /week06/02_attraction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/Makefile -------------------------------------------------------------------------------- /week06/02_attraction/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/Project.xcconfig -------------------------------------------------------------------------------- /week06/02_attraction/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week06/02_attraction/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/config.make -------------------------------------------------------------------------------- /week06/02_attraction/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week06/02_attraction/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/src/Particle.cpp -------------------------------------------------------------------------------- /week06/02_attraction/src/Particle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/src/Particle.hpp -------------------------------------------------------------------------------- /week06/02_attraction/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/src/main.cpp -------------------------------------------------------------------------------- /week06/02_attraction/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/src/ofApp.cpp -------------------------------------------------------------------------------- /week06/02_attraction/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/02_attraction/src/ofApp.h -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/03_attraction_repulsion.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/03_attraction_repulsion.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/03_attraction_repulsion.xcodeproj/xcshareddata/xcschemes/03_attraction_repulsion Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/03_attraction_repulsion.xcodeproj/xcshareddata/xcschemes/03_attraction_repulsion Debug.xcscheme -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/03_attraction_repulsion.xcodeproj/xcshareddata/xcschemes/03_attraction_repulsion Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/03_attraction_repulsion.xcodeproj/xcshareddata/xcschemes/03_attraction_repulsion Release.xcscheme -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/Makefile -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/Project.xcconfig -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/config.make -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/src/Mover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/src/Mover.cpp -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/src/Mover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/src/Mover.hpp -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/src/main.cpp -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/src/ofApp.cpp -------------------------------------------------------------------------------- /week06/03_attraction_repulsion/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/03_attraction_repulsion/src/ofApp.h -------------------------------------------------------------------------------- /week06/04_attractors/04_attractors.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/04_attractors.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week06/04_attractors/04_attractors.xcodeproj/xcshareddata/xcschemes/04_attractors Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/04_attractors.xcodeproj/xcshareddata/xcschemes/04_attractors Debug.xcscheme -------------------------------------------------------------------------------- /week06/04_attractors/04_attractors.xcodeproj/xcshareddata/xcschemes/04_attractors Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/04_attractors.xcodeproj/xcshareddata/xcschemes/04_attractors Release.xcscheme -------------------------------------------------------------------------------- /week06/04_attractors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/Makefile -------------------------------------------------------------------------------- /week06/04_attractors/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/Project.xcconfig -------------------------------------------------------------------------------- /week06/04_attractors/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week06/04_attractors/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/config.make -------------------------------------------------------------------------------- /week06/04_attractors/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week06/04_attractors/src/Attractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/src/Attractor.cpp -------------------------------------------------------------------------------- /week06/04_attractors/src/Attractor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/src/Attractor.hpp -------------------------------------------------------------------------------- /week06/04_attractors/src/Mover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/src/Mover.cpp -------------------------------------------------------------------------------- /week06/04_attractors/src/Mover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/src/Mover.hpp -------------------------------------------------------------------------------- /week06/04_attractors/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/src/main.cpp -------------------------------------------------------------------------------- /week06/04_attractors/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/src/ofApp.cpp -------------------------------------------------------------------------------- /week06/04_attractors/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/04_attractors/src/ofApp.h -------------------------------------------------------------------------------- /week06/05_elastic/05_elastic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/05_elastic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week06/05_elastic/05_elastic.xcodeproj/xcshareddata/xcschemes/05_elastic Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/05_elastic.xcodeproj/xcshareddata/xcschemes/05_elastic Debug.xcscheme -------------------------------------------------------------------------------- /week06/05_elastic/05_elastic.xcodeproj/xcshareddata/xcschemes/05_elastic Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/05_elastic.xcodeproj/xcshareddata/xcschemes/05_elastic Release.xcscheme -------------------------------------------------------------------------------- /week06/05_elastic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/Makefile -------------------------------------------------------------------------------- /week06/05_elastic/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/Project.xcconfig -------------------------------------------------------------------------------- /week06/05_elastic/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week06/05_elastic/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/config.make -------------------------------------------------------------------------------- /week06/05_elastic/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week06/05_elastic/src/ElasticMover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/src/ElasticMover.cpp -------------------------------------------------------------------------------- /week06/05_elastic/src/ElasticMover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/src/ElasticMover.hpp -------------------------------------------------------------------------------- /week06/05_elastic/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/src/main.cpp -------------------------------------------------------------------------------- /week06/05_elastic/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/src/ofApp.cpp -------------------------------------------------------------------------------- /week06/05_elastic/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/05_elastic/src/ofApp.h -------------------------------------------------------------------------------- /week06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week06/README.md -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/00_attraction-repulsion_in-class.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/00_attraction-repulsion_in-class.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/00_attraction-repulsion_in-class.xcodeproj/xcshareddata/xcschemes/00_attraction-repulsion_in-class Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/00_attraction-repulsion_in-class.xcodeproj/xcshareddata/xcschemes/00_attraction-repulsion_in-class Debug.xcscheme -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/00_attraction-repulsion_in-class.xcodeproj/xcshareddata/xcschemes/00_attraction-repulsion_in-class Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/00_attraction-repulsion_in-class.xcodeproj/xcshareddata/xcschemes/00_attraction-repulsion_in-class Release.xcscheme -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/Makefile -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/Project.xcconfig -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/config.make -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/src/Mover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/src/Mover.cpp -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/src/Mover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/src/Mover.hpp -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/src/main.cpp -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/src/ofApp.cpp -------------------------------------------------------------------------------- /week07/00_attraction-repulsion_in-class/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/00_attraction-repulsion_in-class/src/ofApp.h -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/01_attraction-repulsion_extra.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/01_attraction-repulsion_extra.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/01_attraction-repulsion_extra.xcodeproj/xcshareddata/xcschemes/01_attraction-repulsion_extra Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/01_attraction-repulsion_extra.xcodeproj/xcshareddata/xcschemes/01_attraction-repulsion_extra Debug.xcscheme -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/01_attraction-repulsion_extra.xcodeproj/xcshareddata/xcschemes/01_attraction-repulsion_extra Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/01_attraction-repulsion_extra.xcodeproj/xcshareddata/xcschemes/01_attraction-repulsion_extra Release.xcscheme -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/Makefile -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/Project.xcconfig -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/config.make -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/src/Mover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/src/Mover.cpp -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/src/Mover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/src/Mover.hpp -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/src/main.cpp -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/src/ofApp.cpp -------------------------------------------------------------------------------- /week07/01_attraction-repulsion_extra/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/01_attraction-repulsion_extra/src/ofApp.h -------------------------------------------------------------------------------- /week07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week07/README.md -------------------------------------------------------------------------------- /week08/01_sphere/01_sphere.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/01_sphere/01_sphere.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week08/01_sphere/01_sphere.xcodeproj/xcshareddata/xcschemes/01_sphere Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/01_sphere/01_sphere.xcodeproj/xcshareddata/xcschemes/01_sphere Debug.xcscheme -------------------------------------------------------------------------------- /week08/01_sphere/01_sphere.xcodeproj/xcshareddata/xcschemes/01_sphere Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/01_sphere/01_sphere.xcodeproj/xcshareddata/xcschemes/01_sphere Release.xcscheme -------------------------------------------------------------------------------- /week08/01_sphere/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/01_sphere/Makefile -------------------------------------------------------------------------------- /week08/01_sphere/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/01_sphere/Project.xcconfig -------------------------------------------------------------------------------- /week08/01_sphere/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week08/01_sphere/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/01_sphere/config.make -------------------------------------------------------------------------------- /week08/01_sphere/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/01_sphere/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week08/01_sphere/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/01_sphere/src/main.cpp -------------------------------------------------------------------------------- /week08/01_sphere/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/01_sphere/src/ofApp.cpp -------------------------------------------------------------------------------- /week08/01_sphere/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/01_sphere/src/ofApp.h -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/02_bouncing_spheres.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/02_bouncing_spheres.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/02_bouncing_spheres.xcodeproj/xcshareddata/xcschemes/02_bouncing_spheres Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/02_bouncing_spheres.xcodeproj/xcshareddata/xcschemes/02_bouncing_spheres Debug.xcscheme -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/02_bouncing_spheres.xcodeproj/xcshareddata/xcschemes/02_bouncing_spheres Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/02_bouncing_spheres.xcodeproj/xcshareddata/xcschemes/02_bouncing_spheres Release.xcscheme -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/Makefile -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/Project.xcconfig -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/config.make -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/src/Box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/src/Box.hpp -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/src/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/src/Sphere.cpp -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/src/Sphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/src/Sphere.hpp -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/src/main.cpp -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/src/ofApp.cpp -------------------------------------------------------------------------------- /week08/02_bouncing_spheres/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/02_bouncing_spheres/src/ofApp.h -------------------------------------------------------------------------------- /week08/03_drawing_3D/03_drawing_3D.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/03_drawing_3D/03_drawing_3D.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week08/03_drawing_3D/03_drawing_3D.xcodeproj/xcshareddata/xcschemes/03_drawing_3D Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/03_drawing_3D/03_drawing_3D.xcodeproj/xcshareddata/xcschemes/03_drawing_3D Debug.xcscheme -------------------------------------------------------------------------------- /week08/03_drawing_3D/03_drawing_3D.xcodeproj/xcshareddata/xcschemes/03_drawing_3D Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/03_drawing_3D/03_drawing_3D.xcodeproj/xcshareddata/xcschemes/03_drawing_3D Release.xcscheme -------------------------------------------------------------------------------- /week08/03_drawing_3D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/03_drawing_3D/Makefile -------------------------------------------------------------------------------- /week08/03_drawing_3D/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/03_drawing_3D/Project.xcconfig -------------------------------------------------------------------------------- /week08/03_drawing_3D/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week08/03_drawing_3D/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/03_drawing_3D/config.make -------------------------------------------------------------------------------- /week08/03_drawing_3D/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/03_drawing_3D/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week08/03_drawing_3D/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/03_drawing_3D/src/main.cpp -------------------------------------------------------------------------------- /week08/03_drawing_3D/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/03_drawing_3D/src/ofApp.cpp -------------------------------------------------------------------------------- /week08/03_drawing_3D/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/03_drawing_3D/src/ofApp.h -------------------------------------------------------------------------------- /week08/04_noisy_sphere/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/04_noisy_sphere/src/main.cpp -------------------------------------------------------------------------------- /week08/04_noisy_sphere/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/04_noisy_sphere/src/ofApp.cpp -------------------------------------------------------------------------------- /week08/04_noisy_sphere/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/04_noisy_sphere/src/ofApp.h -------------------------------------------------------------------------------- /week08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week08/README.md -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/01_vector_field_in-class.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/01_vector_field_in-class.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/01_vector_field_in-class.xcodeproj/xcshareddata/xcschemes/01_vector_field_in-class Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/01_vector_field_in-class.xcodeproj/xcshareddata/xcschemes/01_vector_field_in-class Debug.xcscheme -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/01_vector_field_in-class.xcodeproj/xcshareddata/xcschemes/01_vector_field_in-class Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/01_vector_field_in-class.xcodeproj/xcshareddata/xcschemes/01_vector_field_in-class Release.xcscheme -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/Makefile -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/Project.xcconfig -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/config.make -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/src/Particle.cpp -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/src/Particle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/src/Particle.hpp -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/src/VectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/src/VectorField.cpp -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/src/VectorField.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/src/VectorField.hpp -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/src/main.cpp -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/src/ofApp.cpp -------------------------------------------------------------------------------- /week09/01_vector_field_in-class/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/01_vector_field_in-class/src/ofApp.h -------------------------------------------------------------------------------- /week09/02_collision_example/02_collision_example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/02_collision_example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week09/02_collision_example/02_collision_example.xcodeproj/xcshareddata/xcschemes/02_collision_example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/02_collision_example.xcodeproj/xcshareddata/xcschemes/02_collision_example Debug.xcscheme -------------------------------------------------------------------------------- /week09/02_collision_example/02_collision_example.xcodeproj/xcshareddata/xcschemes/02_collision_example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/02_collision_example.xcodeproj/xcshareddata/xcschemes/02_collision_example Release.xcscheme -------------------------------------------------------------------------------- /week09/02_collision_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/Makefile -------------------------------------------------------------------------------- /week09/02_collision_example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/Project.xcconfig -------------------------------------------------------------------------------- /week09/02_collision_example/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week09/02_collision_example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/config.make -------------------------------------------------------------------------------- /week09/02_collision_example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week09/02_collision_example/src/Ball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/src/Ball.cpp -------------------------------------------------------------------------------- /week09/02_collision_example/src/Ball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/src/Ball.h -------------------------------------------------------------------------------- /week09/02_collision_example/src/PaddleCircles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/src/PaddleCircles.cpp -------------------------------------------------------------------------------- /week09/02_collision_example/src/PaddleCircles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/src/PaddleCircles.hpp -------------------------------------------------------------------------------- /week09/02_collision_example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/src/main.cpp -------------------------------------------------------------------------------- /week09/02_collision_example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/src/ofApp.cpp -------------------------------------------------------------------------------- /week09/02_collision_example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week09/02_collision_example/src/ofApp.h -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/01_plane_mesh_gui.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/01_plane_mesh_gui.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/01_plane_mesh_gui.xcodeproj/xcshareddata/xcschemes/01_plane_mesh_gui Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/01_plane_mesh_gui.xcodeproj/xcshareddata/xcschemes/01_plane_mesh_gui Debug.xcscheme -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/01_plane_mesh_gui.xcodeproj/xcshareddata/xcschemes/01_plane_mesh_gui Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/01_plane_mesh_gui.xcodeproj/xcshareddata/xcschemes/01_plane_mesh_gui Release.xcscheme -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/Makefile -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/Project.xcconfig -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | ofxXmlSettings 3 | -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/config.make -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/src/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/src/Plane.cpp -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/src/Plane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/src/Plane.hpp -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/src/main.cpp -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/src/ofApp.cpp -------------------------------------------------------------------------------- /week11/01_plane_mesh_gui/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/01_plane_mesh_gui/src/ofApp.h -------------------------------------------------------------------------------- /week11/02_3d_basics/02_3d_basics.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/02_3d_basics/02_3d_basics.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week11/02_3d_basics/02_3d_basics.xcodeproj/xcshareddata/xcschemes/02_3d_basics Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/02_3d_basics/02_3d_basics.xcodeproj/xcshareddata/xcschemes/02_3d_basics Debug.xcscheme -------------------------------------------------------------------------------- /week11/02_3d_basics/02_3d_basics.xcodeproj/xcshareddata/xcschemes/02_3d_basics Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/02_3d_basics/02_3d_basics.xcodeproj/xcshareddata/xcschemes/02_3d_basics Release.xcscheme -------------------------------------------------------------------------------- /week11/02_3d_basics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/02_3d_basics/Makefile -------------------------------------------------------------------------------- /week11/02_3d_basics/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/02_3d_basics/Project.xcconfig -------------------------------------------------------------------------------- /week11/02_3d_basics/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week11/02_3d_basics/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/02_3d_basics/config.make -------------------------------------------------------------------------------- /week11/02_3d_basics/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/02_3d_basics/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week11/02_3d_basics/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/02_3d_basics/src/main.cpp -------------------------------------------------------------------------------- /week11/02_3d_basics/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/02_3d_basics/src/ofApp.cpp -------------------------------------------------------------------------------- /week11/02_3d_basics/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/02_3d_basics/src/ofApp.h -------------------------------------------------------------------------------- /week11/03_volcano_particles/03_volcano_particles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/03_volcano_particles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week11/03_volcano_particles/03_volcano_particles.xcodeproj/xcshareddata/xcschemes/03_volcano_particles Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/03_volcano_particles.xcodeproj/xcshareddata/xcschemes/03_volcano_particles Debug.xcscheme -------------------------------------------------------------------------------- /week11/03_volcano_particles/03_volcano_particles.xcodeproj/xcshareddata/xcschemes/03_volcano_particles Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/03_volcano_particles.xcodeproj/xcshareddata/xcschemes/03_volcano_particles Release.xcscheme -------------------------------------------------------------------------------- /week11/03_volcano_particles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/Makefile -------------------------------------------------------------------------------- /week11/03_volcano_particles/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/Project.xcconfig -------------------------------------------------------------------------------- /week11/03_volcano_particles/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | -------------------------------------------------------------------------------- /week11/03_volcano_particles/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/config.make -------------------------------------------------------------------------------- /week11/03_volcano_particles/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week11/03_volcano_particles/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/src/Particle.cpp -------------------------------------------------------------------------------- /week11/03_volcano_particles/src/Particle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/src/Particle.hpp -------------------------------------------------------------------------------- /week11/03_volcano_particles/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/src/main.cpp -------------------------------------------------------------------------------- /week11/03_volcano_particles/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/src/ofApp.cpp -------------------------------------------------------------------------------- /week11/03_volcano_particles/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/03_volcano_particles/src/ofApp.h -------------------------------------------------------------------------------- /week11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week11/README.md -------------------------------------------------------------------------------- /week12/01_mesh_faces/01_mesh_faces.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/01_mesh_faces/01_mesh_faces.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week12/01_mesh_faces/01_mesh_faces.xcodeproj/xcshareddata/xcschemes/01_mesh_faces Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/01_mesh_faces/01_mesh_faces.xcodeproj/xcshareddata/xcschemes/01_mesh_faces Debug.xcscheme -------------------------------------------------------------------------------- /week12/01_mesh_faces/01_mesh_faces.xcodeproj/xcshareddata/xcschemes/01_mesh_faces Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/01_mesh_faces/01_mesh_faces.xcodeproj/xcshareddata/xcschemes/01_mesh_faces Release.xcscheme -------------------------------------------------------------------------------- /week12/01_mesh_faces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/01_mesh_faces/Makefile -------------------------------------------------------------------------------- /week12/01_mesh_faces/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/01_mesh_faces/Project.xcconfig -------------------------------------------------------------------------------- /week12/01_mesh_faces/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week12/01_mesh_faces/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/01_mesh_faces/config.make -------------------------------------------------------------------------------- /week12/01_mesh_faces/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/01_mesh_faces/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week12/01_mesh_faces/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/01_mesh_faces/src/main.cpp -------------------------------------------------------------------------------- /week12/01_mesh_faces/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/01_mesh_faces/src/ofApp.cpp -------------------------------------------------------------------------------- /week12/01_mesh_faces/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/01_mesh_faces/src/ofApp.h -------------------------------------------------------------------------------- /week12/02_mesh_webcam/02_mesh_webcam.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/02_mesh_webcam/02_mesh_webcam.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week12/02_mesh_webcam/02_mesh_webcam.xcodeproj/xcshareddata/xcschemes/02_mesh_webcam Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/02_mesh_webcam/02_mesh_webcam.xcodeproj/xcshareddata/xcschemes/02_mesh_webcam Debug.xcscheme -------------------------------------------------------------------------------- /week12/02_mesh_webcam/02_mesh_webcam.xcodeproj/xcshareddata/xcschemes/02_mesh_webcam Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/02_mesh_webcam/02_mesh_webcam.xcodeproj/xcshareddata/xcschemes/02_mesh_webcam Release.xcscheme -------------------------------------------------------------------------------- /week12/02_mesh_webcam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/02_mesh_webcam/Makefile -------------------------------------------------------------------------------- /week12/02_mesh_webcam/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/02_mesh_webcam/Project.xcconfig -------------------------------------------------------------------------------- /week12/02_mesh_webcam/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | -------------------------------------------------------------------------------- /week12/02_mesh_webcam/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/02_mesh_webcam/config.make -------------------------------------------------------------------------------- /week12/02_mesh_webcam/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/02_mesh_webcam/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week12/02_mesh_webcam/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/02_mesh_webcam/src/main.cpp -------------------------------------------------------------------------------- /week12/02_mesh_webcam/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/02_mesh_webcam/src/ofApp.cpp -------------------------------------------------------------------------------- /week12/02_mesh_webcam/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/02_mesh_webcam/src/ofApp.h -------------------------------------------------------------------------------- /week12/03_color_channels/03_color_channels.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/03_color_channels/03_color_channels.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week12/03_color_channels/03_color_channels.xcodeproj/xcshareddata/xcschemes/03_color_channels Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/03_color_channels/03_color_channels.xcodeproj/xcshareddata/xcschemes/03_color_channels Debug.xcscheme -------------------------------------------------------------------------------- /week12/03_color_channels/03_color_channels.xcodeproj/xcshareddata/xcschemes/03_color_channels Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/03_color_channels/03_color_channels.xcodeproj/xcshareddata/xcschemes/03_color_channels Release.xcscheme -------------------------------------------------------------------------------- /week12/03_color_channels/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/03_color_channels/Makefile -------------------------------------------------------------------------------- /week12/03_color_channels/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/03_color_channels/Project.xcconfig -------------------------------------------------------------------------------- /week12/03_color_channels/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week12/03_color_channels/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/03_color_channels/config.make -------------------------------------------------------------------------------- /week12/03_color_channels/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/03_color_channels/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week12/03_color_channels/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/03_color_channels/src/main.cpp -------------------------------------------------------------------------------- /week12/03_color_channels/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/03_color_channels/src/ofApp.cpp -------------------------------------------------------------------------------- /week12/03_color_channels/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/03_color_channels/src/ofApp.h -------------------------------------------------------------------------------- /week12/04_pixel_data/04_pixel_data.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/04_pixel_data/04_pixel_data.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week12/04_pixel_data/04_pixel_data.xcodeproj/xcshareddata/xcschemes/04_pixel_data Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/04_pixel_data/04_pixel_data.xcodeproj/xcshareddata/xcschemes/04_pixel_data Debug.xcscheme -------------------------------------------------------------------------------- /week12/04_pixel_data/04_pixel_data.xcodeproj/xcshareddata/xcschemes/04_pixel_data Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/04_pixel_data/04_pixel_data.xcodeproj/xcshareddata/xcschemes/04_pixel_data Release.xcscheme -------------------------------------------------------------------------------- /week12/04_pixel_data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/04_pixel_data/Makefile -------------------------------------------------------------------------------- /week12/04_pixel_data/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/04_pixel_data/Project.xcconfig -------------------------------------------------------------------------------- /week12/04_pixel_data/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week12/04_pixel_data/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/04_pixel_data/config.make -------------------------------------------------------------------------------- /week12/04_pixel_data/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/04_pixel_data/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week12/04_pixel_data/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/04_pixel_data/src/main.cpp -------------------------------------------------------------------------------- /week12/04_pixel_data/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/04_pixel_data/src/ofApp.cpp -------------------------------------------------------------------------------- /week12/04_pixel_data/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/04_pixel_data/src/ofApp.h -------------------------------------------------------------------------------- /week12/05_glitch/05_glitch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/05_glitch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week12/05_glitch/05_glitch.xcodeproj/xcshareddata/xcschemes/05_glitch Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/05_glitch.xcodeproj/xcshareddata/xcschemes/05_glitch Debug.xcscheme -------------------------------------------------------------------------------- /week12/05_glitch/05_glitch.xcodeproj/xcshareddata/xcschemes/05_glitch Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/05_glitch.xcodeproj/xcshareddata/xcschemes/05_glitch Release.xcscheme -------------------------------------------------------------------------------- /week12/05_glitch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/Makefile -------------------------------------------------------------------------------- /week12/05_glitch/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/Project.xcconfig -------------------------------------------------------------------------------- /week12/05_glitch/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week12/05_glitch/bin/data/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/bin/data/video.mp4 -------------------------------------------------------------------------------- /week12/05_glitch/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/config.make -------------------------------------------------------------------------------- /week12/05_glitch/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week12/05_glitch/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/src/main.cpp -------------------------------------------------------------------------------- /week12/05_glitch/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/src/ofApp.cpp -------------------------------------------------------------------------------- /week12/05_glitch/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/05_glitch/src/ofApp.h -------------------------------------------------------------------------------- /week12/06_mesh_texture/06_mesh_texture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/06_mesh_texture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week12/06_mesh_texture/06_mesh_texture.xcodeproj/xcshareddata/xcschemes/06_mesh_texture Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/06_mesh_texture.xcodeproj/xcshareddata/xcschemes/06_mesh_texture Debug.xcscheme -------------------------------------------------------------------------------- /week12/06_mesh_texture/06_mesh_texture.xcodeproj/xcshareddata/xcschemes/06_mesh_texture Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/06_mesh_texture.xcodeproj/xcshareddata/xcschemes/06_mesh_texture Release.xcscheme -------------------------------------------------------------------------------- /week12/06_mesh_texture/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/Makefile -------------------------------------------------------------------------------- /week12/06_mesh_texture/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/Project.xcconfig -------------------------------------------------------------------------------- /week12/06_mesh_texture/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | -------------------------------------------------------------------------------- /week12/06_mesh_texture/bin/data/earth_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/bin/data/earth_texture.jpg -------------------------------------------------------------------------------- /week12/06_mesh_texture/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/config.make -------------------------------------------------------------------------------- /week12/06_mesh_texture/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week12/06_mesh_texture/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/src/main.cpp -------------------------------------------------------------------------------- /week12/06_mesh_texture/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/src/ofApp.cpp -------------------------------------------------------------------------------- /week12/06_mesh_texture/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/06_mesh_texture/src/ofApp.h -------------------------------------------------------------------------------- /week12/07_OSC_mouse/07_OSC_mouse.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/07_OSC_mouse.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week12/07_OSC_mouse/07_OSC_mouse.xcodeproj/xcshareddata/xcschemes/07_OSC_mouse Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/07_OSC_mouse.xcodeproj/xcshareddata/xcschemes/07_OSC_mouse Debug.xcscheme -------------------------------------------------------------------------------- /week12/07_OSC_mouse/07_OSC_mouse.xcodeproj/xcshareddata/xcschemes/07_OSC_mouse Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/07_OSC_mouse.xcodeproj/xcshareddata/xcschemes/07_OSC_mouse Release.xcscheme -------------------------------------------------------------------------------- /week12/07_OSC_mouse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/Makefile -------------------------------------------------------------------------------- /week12/07_OSC_mouse/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/Project.xcconfig -------------------------------------------------------------------------------- /week12/07_OSC_mouse/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc 2 | -------------------------------------------------------------------------------- /week12/07_OSC_mouse/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/config.make -------------------------------------------------------------------------------- /week12/07_OSC_mouse/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week12/07_OSC_mouse/oscMouseExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/oscMouseExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week12/07_OSC_mouse/oscMouseExample.xcodeproj/xcshareddata/xcschemes/oscMouseExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/oscMouseExample.xcodeproj/xcshareddata/xcschemes/oscMouseExample Debug.xcscheme -------------------------------------------------------------------------------- /week12/07_OSC_mouse/oscMouseExample.xcodeproj/xcshareddata/xcschemes/oscMouseExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/oscMouseExample.xcodeproj/xcshareddata/xcschemes/oscMouseExample Release.xcscheme -------------------------------------------------------------------------------- /week12/07_OSC_mouse/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/src/main.cpp -------------------------------------------------------------------------------- /week12/07_OSC_mouse/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/src/ofApp.cpp -------------------------------------------------------------------------------- /week12/07_OSC_mouse/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/07_OSC_mouse/src/ofApp.h -------------------------------------------------------------------------------- /week12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/README.md -------------------------------------------------------------------------------- /week12/normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/normals.png -------------------------------------------------------------------------------- /week12/of_primitive_modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/of_primitive_modes.png -------------------------------------------------------------------------------- /week12/square_mesh_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week12/square_mesh_triangles.png -------------------------------------------------------------------------------- /week13/01_3D_normals/01_3D_normals.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/01_3D_normals/01_3D_normals.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week13/01_3D_normals/01_3D_normals.xcodeproj/xcshareddata/xcschemes/01_3D_normals Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/01_3D_normals/01_3D_normals.xcodeproj/xcshareddata/xcschemes/01_3D_normals Debug.xcscheme -------------------------------------------------------------------------------- /week13/01_3D_normals/01_3D_normals.xcodeproj/xcshareddata/xcschemes/01_3D_normals Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/01_3D_normals/01_3D_normals.xcodeproj/xcshareddata/xcschemes/01_3D_normals Release.xcscheme -------------------------------------------------------------------------------- /week13/01_3D_normals/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/01_3D_normals/Makefile -------------------------------------------------------------------------------- /week13/01_3D_normals/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/01_3D_normals/Project.xcconfig -------------------------------------------------------------------------------- /week13/01_3D_normals/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week13/01_3D_normals/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/01_3D_normals/config.make -------------------------------------------------------------------------------- /week13/01_3D_normals/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/01_3D_normals/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week13/01_3D_normals/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/01_3D_normals/src/main.cpp -------------------------------------------------------------------------------- /week13/01_3D_normals/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/01_3D_normals/src/ofApp.cpp -------------------------------------------------------------------------------- /week13/01_3D_normals/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/01_3D_normals/src/ofApp.h -------------------------------------------------------------------------------- /week13/02_3D_terrain/02_3D_terrain.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/02_3D_terrain.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week13/02_3D_terrain/02_3D_terrain.xcodeproj/xcshareddata/xcschemes/02_3D_terrain Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/02_3D_terrain.xcodeproj/xcshareddata/xcschemes/02_3D_terrain Debug.xcscheme -------------------------------------------------------------------------------- /week13/02_3D_terrain/02_3D_terrain.xcodeproj/xcshareddata/xcschemes/02_3D_terrain Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/02_3D_terrain.xcodeproj/xcshareddata/xcschemes/02_3D_terrain Release.xcscheme -------------------------------------------------------------------------------- /week13/02_3D_terrain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/Makefile -------------------------------------------------------------------------------- /week13/02_3D_terrain/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/Project.xcconfig -------------------------------------------------------------------------------- /week13/02_3D_terrain/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | -------------------------------------------------------------------------------- /week13/02_3D_terrain/bin/data/crater_depth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/bin/data/crater_depth.jpg -------------------------------------------------------------------------------- /week13/02_3D_terrain/bin/data/crater_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/bin/data/crater_texture.jpg -------------------------------------------------------------------------------- /week13/02_3D_terrain/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/config.make -------------------------------------------------------------------------------- /week13/02_3D_terrain/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week13/02_3D_terrain/src/Terrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/src/Terrain.cpp -------------------------------------------------------------------------------- /week13/02_3D_terrain/src/Terrain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/src/Terrain.hpp -------------------------------------------------------------------------------- /week13/02_3D_terrain/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/src/main.cpp -------------------------------------------------------------------------------- /week13/02_3D_terrain/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/src/ofApp.cpp -------------------------------------------------------------------------------- /week13/02_3D_terrain/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week13/02_3D_terrain/src/ofApp.h -------------------------------------------------------------------------------- /week14/01_shader_mask/03_shader_mask.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/03_shader_mask.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week14/01_shader_mask/03_shader_mask.xcodeproj/xcshareddata/xcschemes/03_shader_mask Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/03_shader_mask.xcodeproj/xcshareddata/xcschemes/03_shader_mask Debug.xcscheme -------------------------------------------------------------------------------- /week14/01_shader_mask/03_shader_mask.xcodeproj/xcshareddata/xcschemes/03_shader_mask Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/03_shader_mask.xcodeproj/xcshareddata/xcschemes/03_shader_mask Release.xcscheme -------------------------------------------------------------------------------- /week14/01_shader_mask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/Makefile -------------------------------------------------------------------------------- /week14/01_shader_mask/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/Project.xcconfig -------------------------------------------------------------------------------- /week14/01_shader_mask/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week14/01_shader_mask/bin/data/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/bin/data/image.jpg -------------------------------------------------------------------------------- /week14/01_shader_mask/bin/data/mask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/bin/data/mask.jpg -------------------------------------------------------------------------------- /week14/01_shader_mask/bin/data/shaders/mask.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/bin/data/shaders/mask.frag -------------------------------------------------------------------------------- /week14/01_shader_mask/bin/data/shaders/mask.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/bin/data/shaders/mask.vert -------------------------------------------------------------------------------- /week14/01_shader_mask/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/config.make -------------------------------------------------------------------------------- /week14/01_shader_mask/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week14/01_shader_mask/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/src/main.cpp -------------------------------------------------------------------------------- /week14/01_shader_mask/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/src/ofApp.cpp -------------------------------------------------------------------------------- /week14/01_shader_mask/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/01_shader_mask/src/ofApp.h -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/02_fragment_shader_in-class.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/02_fragment_shader_in-class.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/02_fragment_shader_in-class.xcodeproj/xcshareddata/xcschemes/02_fragment_shader_in-class Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/02_fragment_shader_in-class.xcodeproj/xcshareddata/xcschemes/02_fragment_shader_in-class Debug.xcscheme -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/02_fragment_shader_in-class.xcodeproj/xcshareddata/xcschemes/02_fragment_shader_in-class Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/02_fragment_shader_in-class.xcodeproj/xcshareddata/xcschemes/02_fragment_shader_in-class Release.xcscheme -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/Makefile -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/Project.xcconfig -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/bin/data/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/bin/data/shader.frag -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/bin/data/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/bin/data/shader.vert -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/config.make -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/src/main.cpp -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/src/ofApp.cpp -------------------------------------------------------------------------------- /week14/02_fragment_shader_in-class/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/02_fragment_shader_in-class/src/ofApp.h -------------------------------------------------------------------------------- /week14/03_vertex_shader/03_vertex_shader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/03_vertex_shader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week14/03_vertex_shader/03_vertex_shader.xcodeproj/xcshareddata/xcschemes/03_vertex_shader Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/03_vertex_shader.xcodeproj/xcshareddata/xcschemes/03_vertex_shader Debug.xcscheme -------------------------------------------------------------------------------- /week14/03_vertex_shader/03_vertex_shader.xcodeproj/xcshareddata/xcschemes/03_vertex_shader Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/03_vertex_shader.xcodeproj/xcshareddata/xcschemes/03_vertex_shader Release.xcscheme -------------------------------------------------------------------------------- /week14/03_vertex_shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/Makefile -------------------------------------------------------------------------------- /week14/03_vertex_shader/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/Project.xcconfig -------------------------------------------------------------------------------- /week14/03_vertex_shader/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week14/03_vertex_shader/bin/data/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/bin/data/shader.frag -------------------------------------------------------------------------------- /week14/03_vertex_shader/bin/data/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/bin/data/shader.vert -------------------------------------------------------------------------------- /week14/03_vertex_shader/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/config.make -------------------------------------------------------------------------------- /week14/03_vertex_shader/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week14/03_vertex_shader/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/src/main.cpp -------------------------------------------------------------------------------- /week14/03_vertex_shader/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/src/ofApp.cpp -------------------------------------------------------------------------------- /week14/03_vertex_shader/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/03_vertex_shader/src/ofApp.h -------------------------------------------------------------------------------- /week14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week14/README.md -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/01_wk13_face_tracker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/01_wk13_face_tracker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/01_wk13_face_tracker.xcodeproj/xcshareddata/xcschemes/01_wk13_face_tracker Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/01_wk13_face_tracker.xcodeproj/xcshareddata/xcschemes/01_wk13_face_tracker Debug.xcscheme -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/01_wk13_face_tracker.xcodeproj/xcshareddata/xcschemes/01_wk13_face_tracker Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/01_wk13_face_tracker.xcodeproj/xcshareddata/xcschemes/01_wk13_face_tracker Release.xcscheme -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/Makefile -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/Project.xcconfig -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/addons.make: -------------------------------------------------------------------------------- 1 | ofxCv 2 | ofxOpenCv 3 | -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_eye.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_eye_tree_eyeglasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_eye_tree_eyeglasses.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_frontalcatface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_frontalcatface.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_frontalcatface_extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_frontalcatface_extended.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_frontalface_alt_tree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_frontalface_alt_tree.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_fullbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_fullbody.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_lefteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_lefteye_2splits.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_licence_plate_rus_16stages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_licence_plate_rus_16stages.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_lowerbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_lowerbody.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_mcs_mouth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_mcs_mouth.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_profileface.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_righteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_righteye_2splits.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_russian_plate_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_russian_plate_number.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_smile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_smile.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_smile1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_smile1.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_upperbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_upperbody.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/bin/data/haarcascade_wallclock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/bin/data/haarcascade_wallclock.xml -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/config.make -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/src/main.cpp -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/src/ofApp.cpp -------------------------------------------------------------------------------- /week15/01_wk13_face_tracker/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/01_wk13_face_tracker/src/ofApp.h -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/02_ofPath_to_mesh.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/02_ofPath_to_mesh.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/02_ofPath_to_mesh.xcodeproj/xcshareddata/xcschemes/02_ofPath_to_mesh Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/02_ofPath_to_mesh.xcodeproj/xcshareddata/xcschemes/02_ofPath_to_mesh Debug.xcscheme -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/02_ofPath_to_mesh.xcodeproj/xcshareddata/xcschemes/02_ofPath_to_mesh Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/02_ofPath_to_mesh.xcodeproj/xcshareddata/xcschemes/02_ofPath_to_mesh Release.xcscheme -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/Makefile -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/Project.xcconfig -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/bin/data/fractal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/bin/data/fractal.jpg -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/bin/data/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/bin/data/shader.frag -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/bin/data/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/bin/data/shader.vert -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/config.make -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/src/main.cpp -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/src/ofApp.cpp -------------------------------------------------------------------------------- /week15/02_ofPath_to_mesh/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/02_ofPath_to_mesh/src/ofApp.h -------------------------------------------------------------------------------- /week15/03_kinect_contours/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/03_kinect_contours/addons.make -------------------------------------------------------------------------------- /week15/03_kinect_contours/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week15/03_kinect_contours/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/03_kinect_contours/src/main.cpp -------------------------------------------------------------------------------- /week15/03_kinect_contours/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/03_kinect_contours/src/ofApp.cpp -------------------------------------------------------------------------------- /week15/03_kinect_contours/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/03_kinect_contours/src/ofApp.h -------------------------------------------------------------------------------- /week15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/dt_openframeworks_2018/HEAD/week15/README.md --------------------------------------------------------------------------------