├── .gitignore ├── other └── vectorField_wParticles │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ └── data │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ ├── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ ├── particle.cpp │ ├── particle.h │ ├── vectorField.cpp │ └── vectorField.h │ ├── vectorField_wParticles.cbp │ ├── vectorField_wParticles.sln │ ├── vectorField_wParticles.vcxproj │ ├── vectorField_wParticles.vcxproj.filters │ ├── vectorField_wParticles.vcxproj.user │ ├── vectorField_wParticles.workspace │ └── vectorField_wParticles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ ├── vectorField_wParticles Debug.xcscheme │ └── vectorField_wParticles Release.xcscheme ├── readme.md ├── week1 ├── 0_rectangleClass │ ├── 0_rectangleClass.cbp │ ├── 0_rectangleClass.sln │ ├── 0_rectangleClass.vcxproj │ ├── 0_rectangleClass.vcxproj.filters │ ├── 0_rectangleClass.vcxproj.user │ ├── 0_rectangleClass.workspace │ ├── 0_rectangleClass.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 0_rectangleClass Debug.xcscheme │ │ │ └── 0_rectangleClass Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── rectangle.cpp │ │ └── rectangle.h ├── 1_rectangleInterpolate │ ├── 1_rectangleInterpolate.cbp │ ├── 1_rectangleInterpolate.sln │ ├── 1_rectangleInterpolate.vcxproj │ ├── 1_rectangleInterpolate.vcxproj.filters │ ├── 1_rectangleInterpolate.vcxproj.user │ ├── 1_rectangleInterpolate.workspace │ ├── 1_rectangleInterpolate.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 1_rectangleInterpolate Debug.xcscheme │ │ │ └── 1_rectangleInterpolate Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── rectangle.cpp │ │ └── rectangle.h ├── 2_rectangleInterpolate2 │ ├── 2_rectangleInterpolate2.cbp │ ├── 2_rectangleInterpolate2.sln │ ├── 2_rectangleInterpolate2.vcxproj │ ├── 2_rectangleInterpolate2.vcxproj.filters │ ├── 2_rectangleInterpolate2.vcxproj.user │ ├── 2_rectangleInterpolate2.workspace │ ├── 2_rectangleInterpolate2.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 2_rectangleInterpolate2 Debug.xcscheme │ │ │ └── 2_rectangleInterpolate2 Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── rectangle.cpp │ │ └── rectangle.h ├── 3_rectangleInterpolatePowf │ ├── 3_rectangleInterpolatePowf.cbp │ ├── 3_rectangleInterpolatePowf.sln │ ├── 3_rectangleInterpolatePowf.vcxproj │ ├── 3_rectangleInterpolatePowf.vcxproj.filters │ ├── 3_rectangleInterpolatePowf.vcxproj.user │ ├── 3_rectangleInterpolatePowf.workspace │ ├── 3_rectangleInterpolatePowf.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 3_rectangleInterpolatePowf Debug.xcscheme │ │ │ └── 3_rectangleInterpolatePowf Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── rectangle.cpp │ │ └── rectangle.h ├── 4_rectangleInterpolatePowfMultiple │ ├── 4_rectangleInterpolatePowfMultiple.cbp │ ├── 4_rectangleInterpolatePowfMultiple.sln │ ├── 4_rectangleInterpolatePowfMultiple.vcxproj │ ├── 4_rectangleInterpolatePowfMultiple.vcxproj.filters │ ├── 4_rectangleInterpolatePowfMultiple.vcxproj.user │ ├── 4_rectangleInterpolatePowfMultiple.workspace │ ├── 4_rectangleInterpolatePowfMultiple.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 4_rectangleInterpolatePowfMultiple Debug.xcscheme │ │ │ └── 4_rectangleInterpolatePowfMultiple Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── rectangle.cpp │ │ └── rectangle.h ├── 5_rectangleXeno │ ├── 5_rectangleXeno.cbp │ ├── 5_rectangleXeno.sln │ ├── 5_rectangleXeno.vcxproj │ ├── 5_rectangleXeno.vcxproj.filters │ ├── 5_rectangleXeno.vcxproj.user │ ├── 5_rectangleXeno.workspace │ ├── 5_rectangleXeno.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 5_rectangleXeno Debug.xcscheme │ │ │ └── 5_rectangleXeno Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── rectangle.cpp │ │ └── rectangle.h ├── circleDistancePct │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── circleDistancePct.cbp │ ├── circleDistancePct.sln │ ├── circleDistancePct.vcxproj │ ├── circleDistancePct.vcxproj.filters │ ├── circleDistancePct.vcxproj.user │ ├── circleDistancePct.workspace │ ├── circleDistancePct.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── circleDistancePct Debug.xcscheme │ │ │ └── circleDistancePct Release.xcscheme │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── drawingLinearStretch │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── config.make │ ├── drawingLinearStretch.cbp │ ├── drawingLinearStretch.sln │ ├── drawingLinearStretch.vcxproj │ ├── drawingLinearStretch.vcxproj.filters │ ├── drawingLinearStretch.vcxproj.user │ ├── drawingLinearStretch.workspace │ ├── drawingLinearStretch.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── drawingLinearStretch Debug.xcscheme │ │ │ └── drawingLinearStretch Release.xcscheme │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── linearMapping │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── config.make │ ├── icon.rc │ ├── linearMapping.cbp │ ├── linearMapping.sln │ ├── linearMapping.vcxproj │ ├── linearMapping.vcxproj.filters │ ├── linearMapping.vcxproj.user │ ├── linearMapping.workspace │ ├── linearMapping.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── linearMapping Debug.xcscheme │ │ │ └── linearMapping Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── videoDrawing │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ └── data │ │ ├── .gitkeep │ │ └── fingers.mov │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ ├── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h │ ├── videoDrawing.cbp │ ├── videoDrawing.sln │ ├── videoDrawing.vcxproj │ ├── videoDrawing.vcxproj.filters │ ├── videoDrawing.vcxproj.user │ ├── videoDrawing.workspace │ └── videoDrawing.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ ├── videoDrawing Debug.xcscheme │ └── videoDrawing Release.xcscheme ├── week2 ├── 0_sinExample │ ├── .sln │ ├── .vcproj │ ├── .vcproj.user │ ├── 0_sinExample.cbp │ ├── 0_sinExample.sln │ ├── 0_sinExample.vcxproj │ ├── 0_sinExample.vcxproj.filters │ ├── 0_sinExample.vcxproj.user │ ├── 0_sinExample.workspace │ ├── 0_sinExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 0_sinExample Debug.xcscheme │ │ │ └── 0_sinExample Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 1_sinExample_phase │ ├── 1_sinExample_phase.cbp │ ├── 1_sinExample_phase.sln │ ├── 1_sinExample_phase.vcxproj │ ├── 1_sinExample_phase.vcxproj.filters │ ├── 1_sinExample_phase.vcxproj.user │ ├── 1_sinExample_phase.workspace │ ├── 1_sinExample_phase.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 1_sinExample_phase Debug.xcscheme │ │ │ └── 1_sinExample_phase Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 2_sinExample3_AM │ ├── 2_sinExample3_AM.cbp │ ├── 2_sinExample3_AM.sln │ ├── 2_sinExample3_AM.vcxproj │ ├── 2_sinExample3_AM.vcxproj.filters │ ├── 2_sinExample3_AM.vcxproj.user │ ├── 2_sinExample3_AM.workspace │ ├── 2_sinExample3_AM.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 2_sinExample3_AM Debug.xcscheme │ │ │ └── 2_sinExample3_AM Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 3_sinExample_circle │ ├── 3_sinExample_circle.cbp │ ├── 3_sinExample_circle.sln │ ├── 3_sinExample_circle.vcxproj │ ├── 3_sinExample_circle.vcxproj.filters │ ├── 3_sinExample_circle.vcxproj.user │ ├── 3_sinExample_circle.workspace │ ├── 3_sinExample_circle.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 3_sinExample_circle Debug.xcscheme │ │ │ └── 3_sinExample_circle Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 4_sinExample_pointRecorder │ ├── 4_sinExample_pointRecorder.cbp │ ├── 4_sinExample_pointRecorder.sln │ ├── 4_sinExample_pointRecorder.vcxproj │ ├── 4_sinExample_pointRecorder.vcxproj.filters │ ├── 4_sinExample_pointRecorder.vcxproj.user │ ├── 4_sinExample_pointRecorder.workspace │ ├── 4_sinExample_pointRecorder.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 4_sinExample_pointRecorder Debug.xcscheme │ │ │ └── 4_sinExample_pointRecorder Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 5_sinExample_multiCircles │ ├── 5_sinExample_multiCircles.cbp │ ├── 5_sinExample_multiCircles.sln │ ├── 5_sinExample_multiCircles.vcxproj │ ├── 5_sinExample_multiCircles.vcxproj.filters │ ├── 5_sinExample_multiCircles.vcxproj.user │ ├── 5_sinExample_multiCircles.workspace │ ├── 5_sinExample_multiCircles.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 5_sinExample_multiCircles Debug.xcscheme │ │ │ └── 5_sinExample_multiCircles Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 6_sinExample_circlePlusPath │ ├── 6_sinExample_circlePlusPath.cbp │ ├── 6_sinExample_circlePlusPath.sln │ ├── 6_sinExample_circlePlusPath.vcxproj │ ├── 6_sinExample_circlePlusPath.vcxproj.filters │ ├── 6_sinExample_circlePlusPath.vcxproj.user │ ├── 6_sinExample_circlePlusPath.workspace │ ├── 6_sinExample_circlePlusPath.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 6_sinExample_circlePlusPath Debug.xcscheme │ │ │ └── 6_sinExample_circlePlusPath Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 7_sinExample_circlePlusPath_lissajus │ ├── 7_sinExample_circlePlusPath_lissajus.cbp │ ├── 7_sinExample_circlePlusPath_lissajus.sln │ ├── 7_sinExample_circlePlusPath_lissajus.vcxproj │ ├── 7_sinExample_circlePlusPath_lissajus.vcxproj.filters │ ├── 7_sinExample_circlePlusPath_lissajus.vcxproj.user │ ├── 7_sinExample_circlePlusPath_lissajus.workspace │ ├── 7_sinExample_circlePlusPath_lissajus.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 7_sinExample_circlePlusPath_lissajus Debug.xcscheme │ │ │ └── 7_sinExample_circlePlusPath_lissajus Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 8_sinExample_atan │ ├── 8_sinExample_atan.cbp │ ├── 8_sinExample_atan.sln │ ├── 8_sinExample_atan.vcxproj │ ├── 8_sinExample_atan.vcxproj.filters │ ├── 8_sinExample_atan.vcxproj.user │ ├── 8_sinExample_atan.workspace │ ├── 8_sinExample_atan.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 8_sinExample_atan Debug.xcscheme │ │ │ └── 8_sinExample_atan Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── rectangle.cpp │ │ └── rectangle.h ├── angleGrid │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── angleGrid.cbp │ ├── angleGrid.workspace │ ├── angleGrid.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── angleGrid Debug.xcscheme │ │ │ └── angleGrid Release.xcscheme │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── angleSmooth │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── angleSmooth.cbp │ ├── angleSmooth.workspace │ ├── angleSmooth.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── angleSmooth Debug.xcscheme │ │ │ └── angleSmooth Release.xcscheme │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── angleStrokeWidth │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── angleStrokeWidth.cbp │ ├── angleStrokeWidth.workspace │ ├── angleStrokeWidth.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── angleStrokeWidth Debug.xcscheme │ │ └── angleStrokeWidth Release.xcscheme │ ├── bin │ └── data │ │ └── .gitkeep │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── week3 ├── 10_noise │ ├── .sln │ ├── .vcproj │ ├── .vcproj.user │ ├── 10_noise.cbp │ ├── 10_noise.sln │ ├── 10_noise.vcxproj │ ├── 10_noise.vcxproj.filters │ ├── 10_noise.vcxproj.user │ ├── 10_noise.workspace │ ├── 10_noise.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 10_noise Debug.xcscheme │ │ │ └── 10_noise Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 11_noise │ ├── .sln │ ├── .vcproj │ ├── .vcproj.user │ ├── 11_noise.cbp │ ├── 11_noise.sln │ ├── 11_noise.vcxproj │ ├── 11_noise.vcxproj.filters │ ├── 11_noise.vcxproj.user │ ├── 11_noise.workspace │ ├── 11_noise.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 11_noise Debug.xcscheme │ │ │ └── 11_noise Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── sunset.png │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h ├── 1_drawingWithTime_1 │ ├── 1_drawingWithTime_1.cbp │ ├── 1_drawingWithTime_1.sln │ ├── 1_drawingWithTime_1.vcxproj │ ├── 1_drawingWithTime_1.vcxproj.filters │ ├── 1_drawingWithTime_1.vcxproj.user │ ├── 1_drawingWithTime_1.workspace │ ├── 1_drawingWithTime_1.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 1_drawingWithTime_1 Debug.xcscheme │ │ │ └── 1_drawingWithTime_1 Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── drawbar_c4_a.aif │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── timePoint.cpp │ │ └── timePoint.h ├── 2_drawingWithTime_2 │ ├── 2_drawingWithTime_2.cbp │ ├── 2_drawingWithTime_2.sln │ ├── 2_drawingWithTime_2.vcxproj │ ├── 2_drawingWithTime_2.vcxproj.filters │ ├── 2_drawingWithTime_2.vcxproj.user │ ├── 2_drawingWithTime_2.workspace │ ├── 2_drawingWithTime_2.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 2_drawingWithTime_2 Debug.xcscheme │ │ │ └── 2_drawingWithTime_2 Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── drawbar_c4_a.aif │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── timePoint.cpp │ │ └── timePoint.h ├── 3_drawingWithTime_3 │ ├── 3_drawingWithTime_3.cbp │ ├── 3_drawingWithTime_3.sln │ ├── 3_drawingWithTime_3.vcxproj │ ├── 3_drawingWithTime_3.vcxproj.filters │ ├── 3_drawingWithTime_3.vcxproj.user │ ├── 3_drawingWithTime_3.workspace │ ├── 3_drawingWithTime_3.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 3_drawingWithTime_3 Debug.xcscheme │ │ │ └── 3_drawingWithTime_3 Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── drawbar_c4_a.aif │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── timePoint.cpp │ │ ├── timePoint.h │ │ ├── timePointRecorder.cpp │ │ └── timePointRecorder.h ├── 4_drawingWithTime_4 │ ├── 4_drawingWithTime_4.cbp │ ├── 4_drawingWithTime_4.sln │ ├── 4_drawingWithTime_4.vcxproj │ ├── 4_drawingWithTime_4.vcxproj.filters │ ├── 4_drawingWithTime_4.vcxproj.user │ ├── 4_drawingWithTime_4.workspace │ ├── 4_drawingWithTime_4.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 4_drawingWithTime_4 Debug.xcscheme │ │ │ └── 4_drawingWithTime_4 Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── drawbar_c4_a.aif │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── timePoint.cpp │ │ ├── timePoint.h │ │ ├── timePointRecorder.cpp │ │ └── timePointRecorder.h ├── 5_drawingWithTime_5 │ ├── 5_drawingWithTime_5.cbp │ ├── 5_drawingWithTime_5.sln │ ├── 5_drawingWithTime_5.vcxproj │ ├── 5_drawingWithTime_5.vcxproj.filters │ ├── 5_drawingWithTime_5.vcxproj.user │ ├── 5_drawingWithTime_5.workspace │ ├── 5_drawingWithTime_5.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 5_drawingWithTime_5 Debug.xcscheme │ │ │ └── 5_drawingWithTime_5 Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── drawbar_c4_a.aif │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── timePoint.cpp │ │ ├── timePoint.h │ │ ├── timePointRecorder.cpp │ │ └── timePointRecorder.h ├── 6_drawingWithTime_6 │ ├── 6_drawingWithTime_6.cbp │ ├── 6_drawingWithTime_6.sln │ ├── 6_drawingWithTime_6.vcxproj │ ├── 6_drawingWithTime_6.vcxproj.filters │ ├── 6_drawingWithTime_6.vcxproj.user │ ├── 6_drawingWithTime_6.workspace │ ├── 6_drawingWithTime_6.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 6_drawingWithTime_6 Debug.xcscheme │ │ │ └── 6_drawingWithTime_6 Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── timePoint.cpp │ │ ├── timePoint.h │ │ ├── timePointRecorder.cpp │ │ └── timePointRecorder.h ├── 9_noise │ ├── .sln │ ├── .vcproj │ ├── .vcproj.user │ ├── 9_noise.cbp │ ├── 9_noise.sln │ ├── 9_noise.vcxproj │ ├── 9_noise.vcxproj.filters │ ├── 9_noise.vcxproj.user │ ├── 9_noise.workspace │ ├── 9_noise.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 9_noise Debug.xcscheme │ │ │ └── 9_noise Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── multipleDrawings │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ └── data │ │ └── .gitkeep │ ├── config.make │ ├── icon.rc │ ├── multipleDrawings.cbp │ ├── multipleDrawings.workspace │ ├── multipleDrawings.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── multipleDrawings Debug.xcscheme │ │ └── multipleDrawings Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── week4 ├── bounceOffTheWalls │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── bounceOffTheWalls.cbp │ ├── bounceOffTheWalls.sln │ ├── bounceOffTheWalls.vcxproj │ ├── bounceOffTheWalls.vcxproj.filters │ ├── bounceOffTheWalls.vcxproj.user │ ├── bounceOffTheWalls.workspace │ ├── bounceOffTheWalls.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── bounceOffTheWalls Debug.xcscheme │ │ │ └── bounceOffTheWalls Release.xcscheme │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── drawingWithParticles │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── drawingWithParticles.cbp │ ├── drawingWithParticles.sln │ ├── drawingWithParticles.vcxproj │ ├── drawingWithParticles.vcxproj.filters │ ├── drawingWithParticles.vcxproj.user │ ├── drawingWithParticles.workspace │ ├── drawingWithParticles.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── drawingWithParticles Debug.xcscheme │ │ │ └── drawingWithParticles Release.xcscheme │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── drawingWithParticles2 │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── drawingWithParticles2.cbp │ ├── drawingWithParticles2.sln │ ├── drawingWithParticles2.vcxproj │ ├── drawingWithParticles2.vcxproj.filters │ ├── drawingWithParticles2.vcxproj.user │ ├── drawingWithParticles2.workspace │ ├── drawingWithParticles2.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── drawingWithParticles2 Debug.xcscheme │ │ │ └── drawingWithParticles2 Release.xcscheme │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── multiParticles │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── multiParticles.cbp │ ├── multiParticles.sln │ ├── multiParticles.vcxproj │ ├── multiParticles.vcxproj.filters │ ├── multiParticles.vcxproj.user │ ├── multiParticles.workspace │ ├── multiParticles.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── multiParticles Debug.xcscheme │ │ │ └── multiParticles Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h └── singleParticle │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ └── data │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ ├── singleParticle.cbp │ ├── singleParticle.sln │ ├── singleParticle.vcxproj │ ├── singleParticle.vcxproj.filters │ ├── singleParticle.vcxproj.user │ ├── singleParticle.workspace │ ├── singleParticle.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── singleParticle Debug.xcscheme │ │ └── singleParticle Release.xcscheme │ └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ ├── particle.cpp │ └── particle.h ├── week5 ├── attractionRepulsion │ ├── Makefile │ ├── Project.xcconfig │ ├── attractionRepulsion.cbp │ ├── attractionRepulsion.sln │ ├── attractionRepulsion.vcxproj │ ├── attractionRepulsion.vcxproj.filters │ ├── attractionRepulsion.vcxproj.user │ ├── attractionRepulsion.workspace │ ├── attractionRepulsion.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── attractionRepulsion Debug.xcscheme │ │ │ └── attractionRepulsion Release.xcscheme │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── attractionRepulsion2 │ ├── Makefile │ ├── Project.xcconfig │ ├── attractionRepulsion.cbp │ ├── attractionRepulsion.sln │ ├── attractionRepulsion.vcxproj │ ├── attractionRepulsion.vcxproj.filters │ ├── attractionRepulsion.vcxproj.user │ ├── attractionRepulsion.workspace │ ├── attractionRepulsion.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── attractionRepulsion Debug.xcscheme │ │ │ └── attractionRepulsion Release.xcscheme │ ├── attractionRepulsion2.cbp │ ├── attractionRepulsion2.workspace │ ├── attractionRepulsion2.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── attractionRepulsion2 Debug.xcscheme │ │ │ └── attractionRepulsion2 Release.xcscheme │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── timerExample │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ ├── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h │ ├── timerExample.cbp │ ├── timerExample.workspace │ └── timerExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── timerExample Debug.xcscheme │ │ └── timerExample Release.xcscheme ├── vectorField │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ ├── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── vectorField.cpp │ │ └── vectorField.h │ ├── vectorField.cbp │ ├── vectorField.sln │ ├── vectorField.vcxproj │ ├── vectorField.vcxproj.filters │ ├── vectorField.vcxproj.user │ ├── vectorField.workspace │ └── vectorField.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── vectorField Debug.xcscheme │ │ └── vectorField Release.xcscheme ├── vectorField_drawings │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ ├── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── vectorField.cpp │ │ └── vectorField.h │ ├── vectorField_drawings.cbp │ ├── vectorField_drawings.sln │ ├── vectorField_drawings.vcxproj │ ├── vectorField_drawings.vcxproj.filters │ ├── vectorField_drawings.vcxproj.user │ ├── vectorField_drawings.workspace │ └── vectorField_drawings.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── vectorField_drawings Debug.xcscheme │ │ └── vectorField_drawings Release.xcscheme └── vectorField_wParticles │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ └── data │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ ├── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ ├── particle.cpp │ ├── particle.h │ ├── vectorField.cpp │ └── vectorField.h │ ├── vectorField_wParticles.cbp │ ├── vectorField_wParticles.sln │ ├── vectorField_wParticles.vcxproj │ ├── vectorField_wParticles.vcxproj.filters │ ├── vectorField_wParticles.vcxproj.user │ ├── vectorField_wParticles.workspace │ └── vectorField_wParticles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ ├── vectorField_wParticles Debug.xcscheme │ └── vectorField_wParticles Release.xcscheme ├── week6 ├── 1_particle_particle │ ├── 1_particle_particle.cbp │ ├── 1_particle_particle.sln │ ├── 1_particle_particle.vcxproj │ ├── 1_particle_particle.vcxproj.filters │ ├── 1_particle_particle.vcxproj.user │ ├── 1_particle_particle.workspace │ ├── 1_particle_particle.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 1_particle_particle Debug.xcscheme │ │ │ └── 1_particle_particle Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── 2_particle_particle_manyAreSlow │ ├── 2_particle_particle_manyAreSlow.cbp │ ├── 2_particle_particle_manyAreSlow.sln │ ├── 2_particle_particle_manyAreSlow.vcxproj │ ├── 2_particle_particle_manyAreSlow.vcxproj.filters │ ├── 2_particle_particle_manyAreSlow.vcxproj.user │ ├── 2_particle_particle_manyAreSlow.workspace │ ├── 2_particle_particle_manyAreSlow.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 2_particle_particle_manyAreSlow Debug.xcscheme │ │ │ └── 2_particle_particle_manyAreSlow Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── 3_mixing_forces │ ├── 3_mixing_forces.cbp │ ├── 3_mixing_forces.sln │ ├── 3_mixing_forces.vcxproj │ ├── 3_mixing_forces.vcxproj.filters │ ├── 3_mixing_forces.vcxproj.user │ ├── 3_mixing_forces.workspace │ ├── 3_mixing_forces.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 3_mixing_forces Debug.xcscheme │ │ │ └── 3_mixing_forces Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── particlePointer │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ ├── .gitignore │ │ │ └── star.png │ ├── config.make │ ├── icon.rc │ ├── multiParticles.cbp │ ├── multiParticles.sln │ ├── multiParticles.vcxproj │ ├── multiParticles.vcxproj.filters │ ├── multiParticles.vcxproj.user │ ├── multiParticles.workspace │ ├── multiParticles.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── multiParticles Debug.xcscheme │ │ │ └── multiParticles Release.xcscheme │ ├── openFrameworks-Info.plist │ ├── particlePointer.cbp │ ├── particlePointer.workspace │ ├── particlePointer.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── particlePointer Debug.xcscheme │ │ │ └── particlePointer Release.xcscheme │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── particlePointerFont │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── cooperBlack.ttf │ ├── config.make │ ├── icon.rc │ ├── multiParticles.cbp │ ├── multiParticles.sln │ ├── multiParticles.vcxproj │ ├── multiParticles.vcxproj.filters │ ├── multiParticles.vcxproj.user │ ├── multiParticles.workspace │ ├── multiParticles.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── multiParticles Debug.xcscheme │ │ │ └── multiParticles Release.xcscheme │ ├── openFrameworks-Info.plist │ ├── particlePointerFont.cbp │ ├── particlePointerFont.workspace │ ├── particlePointerFont.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── particlePointerFont Debug.xcscheme │ │ │ └── particlePointerFont Release.xcscheme │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h └── vectorField_video │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ └── data │ │ └── fingers.mov │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ ├── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ ├── particle.cpp │ ├── particle.h │ ├── vectorField.cpp │ └── vectorField.h │ ├── vectorField_video.cbp │ ├── vectorField_video.sln │ ├── vectorField_video.vcxproj │ ├── vectorField_video.vcxproj.filters │ ├── vectorField_video.vcxproj.user │ ├── vectorField_video.workspace │ └── vectorField_video.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ ├── vectorField_video Debug.xcscheme │ └── vectorField_video Release.xcscheme ├── week7 ├── 1_particle_w_image │ ├── 1_particle_w_image.cbp │ ├── 1_particle_w_image.sln │ ├── 1_particle_w_image.vcxproj │ ├── 1_particle_w_image.vcxproj.filters │ ├── 1_particle_w_image.vcxproj.user │ ├── 1_particle_w_image.workspace │ ├── 1_particle_w_image.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 1_particle_w_image Debug.xcscheme │ │ │ └── 1_particle_w_image Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── spot.png │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── 2_particle_particle_binning │ ├── 2_particle_particle_binning.cbp │ ├── 2_particle_particle_binning.sln │ ├── 2_particle_particle_binning.vcxproj │ ├── 2_particle_particle_binning.vcxproj.filters │ ├── 2_particle_particle_binning.vcxproj.user │ ├── 2_particle_particle_binning.workspace │ ├── 2_particle_particle_binning.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 2_particle_particle_binning Debug.xcscheme │ │ │ └── 2_particle_particle_binning Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── binner.cpp │ │ ├── binner.h │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h ├── 3_particle_particle_fast │ ├── 3_particle_particle_fast.cbp │ ├── 3_particle_particle_fast.sln │ ├── 3_particle_particle_fast.vcxproj │ ├── 3_particle_particle_fast.vcxproj.filters │ ├── 3_particle_particle_fast.vcxproj.user │ ├── 3_particle_particle_fast.workspace │ ├── 3_particle_particle_fast.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 3_particle_particle_fast Debug.xcscheme │ │ │ └── 3_particle_particle_fast Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ └── particle.h └── 3_particle_particle_video │ ├── 3_particle_particle_video.cbp │ ├── 3_particle_particle_video.sln │ ├── 3_particle_particle_video.vcxproj │ ├── 3_particle_particle_video.vcxproj.filters │ ├── 3_particle_particle_video.vcxproj.user │ ├── 3_particle_particle_video.workspace │ ├── 3_particle_particle_video.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── 3_particle_particle_video Debug.xcscheme │ │ └── 3_particle_particle_video Release.xcscheme │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin │ └── data │ │ └── fingers.mov │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src │ ├── binner.cpp │ ├── binner.h │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ ├── particle.cpp │ └── particle.h ├── week8 ├── multiForces │ ├── Makefile │ ├── Project.xcconfig │ ├── WOOOOOOO.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── multiForces Debug.xcscheme │ │ │ └── multiForces Release.xcscheme │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── multiForces.cbp │ ├── multiForces.sln │ ├── multiForces.vcxproj │ ├── multiForces.vcxproj.filters │ ├── multiForces.vcxproj.user │ ├── multiForces.workspace │ ├── multiForces.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── multiForces Debug.xcscheme │ │ │ └── multiForces Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── spring.cpp │ │ └── spring.h ├── multiForces2 │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── multiForces2.cbp │ ├── multiForces2.sln │ ├── multiForces2.vcxproj │ ├── multiForces2.vcxproj.filters │ ├── multiForces2.vcxproj.user │ ├── multiForces2.workspace │ ├── multiForces2.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── multiForces2 Debug.xcscheme │ │ │ └── multiForces2 Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── spring.cpp │ │ └── spring.h ├── muscles │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── muscles.cbp │ ├── muscles.sln │ ├── muscles.vcxproj │ ├── muscles.vcxproj.filters │ ├── muscles.vcxproj.user │ ├── muscles.workspace │ ├── muscles.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── muscles Debug.xcscheme │ │ │ └── muscles Release.xcscheme │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── spring.cpp │ │ └── spring.h ├── shapes │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ │ └── data │ │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ ├── shapes.cbp │ ├── shapes.sln │ ├── shapes.vcxproj │ ├── shapes.vcxproj.filters │ ├── shapes.vcxproj.user │ ├── shapes.workspace │ ├── shapes.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── shapes Debug.xcscheme │ │ │ └── shapes Release.xcscheme │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ ├── ofApp.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── spring.cpp │ │ └── spring.h └── springs │ ├── Makefile │ ├── Project.xcconfig │ ├── bin │ └── data │ │ └── .gitignore │ ├── config.make │ ├── icon.rc │ ├── openFrameworks-Info.plist │ ├── springs.cbp │ ├── springs.sln │ ├── springs.vcxproj │ ├── springs.vcxproj.filters │ ├── springs.vcxproj.user │ ├── springs.workspace │ ├── springs.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── springs Debug.xcscheme │ │ └── springs Release.xcscheme │ └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ ├── particle.cpp │ ├── particle.h │ ├── spring.cpp │ └── spring.h └── week9 ├── controlPanel ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── mono.ttf │ │ └── mySettings.xml ├── config.make ├── controlPanel.cbp ├── controlPanel.sln ├── controlPanel.vcxproj ├── controlPanel.vcxproj.filters ├── controlPanel.vcxproj.user ├── controlPanel.workspace ├── controlPanel.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── controlPanel Debug.xcscheme │ │ └── controlPanel Release.xcscheme ├── icon.rc ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ └── ofxControlPanel │ ├── ofxAutoControlPanel.h │ └── src │ ├── guiBaseObject.cpp │ ├── guiBaseObject.h │ ├── guiCallback.cpp │ ├── guiCallback.h │ ├── guiCallbackValue.cpp │ ├── guiCallbackValue.h │ ├── guiColor.cpp │ ├── guiColor.h │ ├── guiCustomImpl.h │ ├── guiIncludes.h │ ├── guiTextBase.cpp │ ├── guiTextBase.h │ ├── guiType2DSlider.cpp │ ├── guiType2DSlider.h │ ├── guiTypeButtonSlider.cpp │ ├── guiTypeButtonSlider.h │ ├── guiTypeChartPlotter.cpp │ ├── guiTypeChartPlotter.h │ ├── guiTypeCustom.cpp │ ├── guiTypeCustom.h │ ├── guiTypeDrawable.cpp │ ├── guiTypeDrawable.h │ ├── guiTypeFileLister.cpp │ ├── guiTypeFileLister.h │ ├── guiTypeLabel.cpp │ ├── guiTypeLabel.h │ ├── guiTypeLogger.cpp │ ├── guiTypeLogger.h │ ├── guiTypeMultiToggle.cpp │ ├── guiTypeMultiToggle.h │ ├── guiTypePanel.cpp │ ├── guiTypePanel.h │ ├── guiTypeSlider.cpp │ ├── guiTypeSlider.h │ ├── guiTypeText.cpp │ ├── guiTypeText.h │ ├── guiTypeTextDropDown.cpp │ ├── guiTypeTextDropDown.h │ ├── guiTypeTextInput.cpp │ ├── guiTypeTextInput.h │ ├── guiTypeToggle.cpp │ ├── guiTypeToggle.h │ ├── guiTypeVairableLister.cpp │ ├── guiTypeVairableLister.h │ ├── guiTypeVideo.cpp │ ├── guiTypeVideo.h │ ├── guiValue.cpp │ ├── guiValue.h │ ├── guiVariablePointer.h │ ├── guiXmlValue.h │ ├── ofxControlPanel.cpp │ ├── ofxControlPanel.h │ ├── simpleColor.cpp │ ├── simpleColor.h │ ├── simpleFileLister.cpp │ ├── simpleFileLister.h │ ├── simpleLogger.cpp │ └── simpleLogger.h ├── flocking ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── mono.ttf │ │ └── mySettings.xml ├── config.make ├── flocking.cbp ├── flocking.sln ├── flocking.vcxproj ├── flocking.vcxproj.filters ├── flocking.vcxproj.user ├── flocking.workspace ├── flocking.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── flocking Debug.xcscheme │ │ └── flocking Release.xcscheme ├── icon.rc ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ ├── ofxControlPanel │ ├── ofxAutoControlPanel.h │ └── src │ │ ├── guiBaseObject.cpp │ │ ├── guiBaseObject.h │ │ ├── guiCallback.cpp │ │ ├── guiCallback.h │ │ ├── guiCallbackValue.cpp │ │ ├── guiCallbackValue.h │ │ ├── guiColor.cpp │ │ ├── guiColor.h │ │ ├── guiCustomImpl.h │ │ ├── guiIncludes.h │ │ ├── guiTextBase.cpp │ │ ├── guiTextBase.h │ │ ├── guiType2DSlider.cpp │ │ ├── guiType2DSlider.h │ │ ├── guiTypeButtonSlider.cpp │ │ ├── guiTypeButtonSlider.h │ │ ├── guiTypeChartPlotter.cpp │ │ ├── guiTypeChartPlotter.h │ │ ├── guiTypeCustom.cpp │ │ ├── guiTypeCustom.h │ │ ├── guiTypeDrawable.cpp │ │ ├── guiTypeDrawable.h │ │ ├── guiTypeFileLister.cpp │ │ ├── guiTypeFileLister.h │ │ ├── guiTypeLabel.cpp │ │ ├── guiTypeLabel.h │ │ ├── guiTypeLogger.cpp │ │ ├── guiTypeLogger.h │ │ ├── guiTypeMultiToggle.cpp │ │ ├── guiTypeMultiToggle.h │ │ ├── guiTypePanel.cpp │ │ ├── guiTypePanel.h │ │ ├── guiTypeSlider.cpp │ │ ├── guiTypeSlider.h │ │ ├── guiTypeText.cpp │ │ ├── guiTypeText.h │ │ ├── guiTypeTextDropDown.cpp │ │ ├── guiTypeTextDropDown.h │ │ ├── guiTypeTextInput.cpp │ │ ├── guiTypeTextInput.h │ │ ├── guiTypeToggle.cpp │ │ ├── guiTypeToggle.h │ │ ├── guiTypeVairableLister.cpp │ │ ├── guiTypeVairableLister.h │ │ ├── guiTypeVideo.cpp │ │ ├── guiTypeVideo.h │ │ ├── guiValue.cpp │ │ ├── guiValue.h │ │ ├── guiVariablePointer.h │ │ ├── guiXmlValue.h │ │ ├── ofxControlPanel.cpp │ │ ├── ofxControlPanel.h │ │ ├── simpleColor.cpp │ │ ├── simpleColor.h │ │ ├── simpleFileLister.cpp │ │ ├── simpleFileLister.h │ │ ├── simpleLogger.cpp │ │ └── simpleLogger.h │ ├── particle.cpp │ └── particle.h ├── inheritance ├── Makefile ├── Project.xcconfig ├── bin │ └── data │ │ └── .gitignore ├── config.make ├── icon.rc ├── inheritance.cbp ├── inheritance.sln ├── inheritance.vcxproj ├── inheritance.vcxproj.filters ├── inheritance.vcxproj.user ├── inheritance.workspace ├── inheritance.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── inheritance Debug.xcscheme │ │ └── inheritance Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── circleParticle.cpp │ ├── circleParticle.h │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ ├── particle.cpp │ ├── particle.h │ ├── squareParticle.cpp │ ├── squareParticle.h │ ├── triangleParticle.cpp │ └── triangleParticle.h ├── noise ├── Makefile ├── Project.xcconfig ├── bin │ └── data │ │ ├── mono.ttf │ │ └── mySettings.xml ├── config.make ├── icon.rc ├── noise.cbp ├── noise.sln ├── noise.vcxproj ├── noise.vcxproj.filters ├── noise.vcxproj.user ├── noise.workspace ├── noise.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── noise Debug.xcscheme │ │ └── noise Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ ├── ofxControlPanel │ ├── ofxAutoControlPanel.h │ └── src │ │ ├── guiBaseObject.cpp │ │ ├── guiBaseObject.h │ │ ├── guiCallback.cpp │ │ ├── guiCallback.h │ │ ├── guiCallbackValue.cpp │ │ ├── guiCallbackValue.h │ │ ├── guiColor.cpp │ │ ├── guiColor.h │ │ ├── guiCustomImpl.h │ │ ├── guiIncludes.h │ │ ├── guiTextBase.cpp │ │ ├── guiTextBase.h │ │ ├── guiType2DSlider.cpp │ │ ├── guiType2DSlider.h │ │ ├── guiTypeButtonSlider.cpp │ │ ├── guiTypeButtonSlider.h │ │ ├── guiTypeChartPlotter.cpp │ │ ├── guiTypeChartPlotter.h │ │ ├── guiTypeCustom.cpp │ │ ├── guiTypeCustom.h │ │ ├── guiTypeDrawable.cpp │ │ ├── guiTypeDrawable.h │ │ ├── guiTypeFileLister.cpp │ │ ├── guiTypeFileLister.h │ │ ├── guiTypeLabel.cpp │ │ ├── guiTypeLabel.h │ │ ├── guiTypeLogger.cpp │ │ ├── guiTypeLogger.h │ │ ├── guiTypeMultiToggle.cpp │ │ ├── guiTypeMultiToggle.h │ │ ├── guiTypePanel.cpp │ │ ├── guiTypePanel.h │ │ ├── guiTypeSlider.cpp │ │ ├── guiTypeSlider.h │ │ ├── guiTypeText.cpp │ │ ├── guiTypeText.h │ │ ├── guiTypeTextDropDown.cpp │ │ ├── guiTypeTextDropDown.h │ │ ├── guiTypeTextInput.cpp │ │ ├── guiTypeTextInput.h │ │ ├── guiTypeToggle.cpp │ │ ├── guiTypeToggle.h │ │ ├── guiTypeVairableLister.cpp │ │ ├── guiTypeVairableLister.h │ │ ├── guiTypeVideo.cpp │ │ ├── guiTypeVideo.h │ │ ├── guiValue.cpp │ │ ├── guiValue.h │ │ ├── guiVariablePointer.h │ │ ├── guiXmlValue.h │ │ ├── ofxControlPanel.cpp │ │ ├── ofxControlPanel.h │ │ ├── simpleColor.cpp │ │ ├── simpleColor.h │ │ ├── simpleFileLister.cpp │ │ ├── simpleFileLister.h │ │ ├── simpleLogger.cpp │ │ └── simpleLogger.h │ ├── particle.cpp │ └── particle.h ├── noiseParticles ├── Makefile ├── Project.xcconfig ├── bin │ └── data │ │ ├── mono.ttf │ │ └── mySettings.xml ├── config.make ├── icon.rc ├── noiseParticles.cbp ├── noiseParticles.sln ├── noiseParticles.vcxproj ├── noiseParticles.vcxproj.filters ├── noiseParticles.vcxproj.user ├── noiseParticles.workspace ├── noiseParticles.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── noiseParticles Debug.xcscheme │ │ └── noiseParticles Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── noiseField.cpp │ ├── noiseField.h │ ├── ofApp.cpp │ ├── ofApp.h │ ├── particle.cpp │ └── particle.h └── scene ├── .sln ├── .vcproj ├── .vcproj.user ├── Makefile ├── Project.xcconfig ├── bin └── data │ └── frog-1.jpg ├── config.make ├── icon.rc ├── openFrameworks-Info.plist ├── scene.cbp ├── scene.sln ├── scene.vcxproj ├── scene.vcxproj.filters ├── scene.vcxproj.user ├── scene.workspace ├── scene.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── scene Debug.xcscheme │ └── scene Release.xcscheme └── src ├── baseScene.cpp ├── baseScene.h ├── circleScene.cpp ├── circleScene.h ├── imageScene.cpp ├── imageScene.h ├── main.cpp ├── ofApp.cpp ├── ofApp.h ├── squareScene.cpp └── squareScene.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/.gitignore -------------------------------------------------------------------------------- /other/vectorField_wParticles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/Makefile -------------------------------------------------------------------------------- /other/vectorField_wParticles/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/Project.xcconfig -------------------------------------------------------------------------------- /other/vectorField_wParticles/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/vectorField_wParticles/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/config.make -------------------------------------------------------------------------------- /other/vectorField_wParticles/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/icon.rc -------------------------------------------------------------------------------- /other/vectorField_wParticles/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/src/main.cpp -------------------------------------------------------------------------------- /other/vectorField_wParticles/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/src/ofApp.cpp -------------------------------------------------------------------------------- /other/vectorField_wParticles/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/src/ofApp.h -------------------------------------------------------------------------------- /other/vectorField_wParticles/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/src/particle.cpp -------------------------------------------------------------------------------- /other/vectorField_wParticles/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/src/particle.h -------------------------------------------------------------------------------- /other/vectorField_wParticles/src/vectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/src/vectorField.cpp -------------------------------------------------------------------------------- /other/vectorField_wParticles/src/vectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/other/vectorField_wParticles/src/vectorField.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/readme.md -------------------------------------------------------------------------------- /week1/0_rectangleClass/0_rectangleClass.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/0_rectangleClass.cbp -------------------------------------------------------------------------------- /week1/0_rectangleClass/0_rectangleClass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/0_rectangleClass.sln -------------------------------------------------------------------------------- /week1/0_rectangleClass/0_rectangleClass.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/0_rectangleClass.vcxproj -------------------------------------------------------------------------------- /week1/0_rectangleClass/0_rectangleClass.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/0_rectangleClass.workspace -------------------------------------------------------------------------------- /week1/0_rectangleClass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/Makefile -------------------------------------------------------------------------------- /week1/0_rectangleClass/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/Project.xcconfig -------------------------------------------------------------------------------- /week1/0_rectangleClass/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/0_rectangleClass/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/config.make -------------------------------------------------------------------------------- /week1/0_rectangleClass/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/icon.rc -------------------------------------------------------------------------------- /week1/0_rectangleClass/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week1/0_rectangleClass/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/src/main.cpp -------------------------------------------------------------------------------- /week1/0_rectangleClass/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/src/ofApp.cpp -------------------------------------------------------------------------------- /week1/0_rectangleClass/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/src/ofApp.h -------------------------------------------------------------------------------- /week1/0_rectangleClass/src/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/src/rectangle.cpp -------------------------------------------------------------------------------- /week1/0_rectangleClass/src/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/0_rectangleClass/src/rectangle.h -------------------------------------------------------------------------------- /week1/1_rectangleInterpolate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/1_rectangleInterpolate/Makefile -------------------------------------------------------------------------------- /week1/1_rectangleInterpolate/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/1_rectangleInterpolate/Project.xcconfig -------------------------------------------------------------------------------- /week1/1_rectangleInterpolate/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/1_rectangleInterpolate/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/1_rectangleInterpolate/config.make -------------------------------------------------------------------------------- /week1/1_rectangleInterpolate/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/1_rectangleInterpolate/icon.rc -------------------------------------------------------------------------------- /week1/1_rectangleInterpolate/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/1_rectangleInterpolate/src/main.cpp -------------------------------------------------------------------------------- /week1/1_rectangleInterpolate/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/1_rectangleInterpolate/src/ofApp.cpp -------------------------------------------------------------------------------- /week1/1_rectangleInterpolate/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/1_rectangleInterpolate/src/ofApp.h -------------------------------------------------------------------------------- /week1/1_rectangleInterpolate/src/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/1_rectangleInterpolate/src/rectangle.cpp -------------------------------------------------------------------------------- /week1/1_rectangleInterpolate/src/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/1_rectangleInterpolate/src/rectangle.h -------------------------------------------------------------------------------- /week1/2_rectangleInterpolate2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/2_rectangleInterpolate2/Makefile -------------------------------------------------------------------------------- /week1/2_rectangleInterpolate2/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/2_rectangleInterpolate2/Project.xcconfig -------------------------------------------------------------------------------- /week1/2_rectangleInterpolate2/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/2_rectangleInterpolate2/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/2_rectangleInterpolate2/config.make -------------------------------------------------------------------------------- /week1/2_rectangleInterpolate2/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/2_rectangleInterpolate2/icon.rc -------------------------------------------------------------------------------- /week1/2_rectangleInterpolate2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/2_rectangleInterpolate2/src/main.cpp -------------------------------------------------------------------------------- /week1/2_rectangleInterpolate2/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/2_rectangleInterpolate2/src/ofApp.cpp -------------------------------------------------------------------------------- /week1/2_rectangleInterpolate2/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/2_rectangleInterpolate2/src/ofApp.h -------------------------------------------------------------------------------- /week1/2_rectangleInterpolate2/src/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/2_rectangleInterpolate2/src/rectangle.cpp -------------------------------------------------------------------------------- /week1/2_rectangleInterpolate2/src/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/2_rectangleInterpolate2/src/rectangle.h -------------------------------------------------------------------------------- /week1/3_rectangleInterpolatePowf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/3_rectangleInterpolatePowf/Makefile -------------------------------------------------------------------------------- /week1/3_rectangleInterpolatePowf/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/3_rectangleInterpolatePowf/Project.xcconfig -------------------------------------------------------------------------------- /week1/3_rectangleInterpolatePowf/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/3_rectangleInterpolatePowf/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/3_rectangleInterpolatePowf/config.make -------------------------------------------------------------------------------- /week1/3_rectangleInterpolatePowf/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/3_rectangleInterpolatePowf/icon.rc -------------------------------------------------------------------------------- /week1/3_rectangleInterpolatePowf/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/3_rectangleInterpolatePowf/src/main.cpp -------------------------------------------------------------------------------- /week1/3_rectangleInterpolatePowf/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/3_rectangleInterpolatePowf/src/ofApp.cpp -------------------------------------------------------------------------------- /week1/3_rectangleInterpolatePowf/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/3_rectangleInterpolatePowf/src/ofApp.h -------------------------------------------------------------------------------- /week1/3_rectangleInterpolatePowf/src/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/3_rectangleInterpolatePowf/src/rectangle.cpp -------------------------------------------------------------------------------- /week1/3_rectangleInterpolatePowf/src/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/3_rectangleInterpolatePowf/src/rectangle.h -------------------------------------------------------------------------------- /week1/4_rectangleInterpolatePowfMultiple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/4_rectangleInterpolatePowfMultiple/Makefile -------------------------------------------------------------------------------- /week1/4_rectangleInterpolatePowfMultiple/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/4_rectangleInterpolatePowfMultiple/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/4_rectangleInterpolatePowfMultiple/icon.rc -------------------------------------------------------------------------------- /week1/5_rectangleXeno/5_rectangleXeno.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/5_rectangleXeno.cbp -------------------------------------------------------------------------------- /week1/5_rectangleXeno/5_rectangleXeno.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/5_rectangleXeno.sln -------------------------------------------------------------------------------- /week1/5_rectangleXeno/5_rectangleXeno.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/5_rectangleXeno.vcxproj -------------------------------------------------------------------------------- /week1/5_rectangleXeno/5_rectangleXeno.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/5_rectangleXeno.vcxproj.user -------------------------------------------------------------------------------- /week1/5_rectangleXeno/5_rectangleXeno.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/5_rectangleXeno.workspace -------------------------------------------------------------------------------- /week1/5_rectangleXeno/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/Makefile -------------------------------------------------------------------------------- /week1/5_rectangleXeno/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/Project.xcconfig -------------------------------------------------------------------------------- /week1/5_rectangleXeno/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/5_rectangleXeno/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/config.make -------------------------------------------------------------------------------- /week1/5_rectangleXeno/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/icon.rc -------------------------------------------------------------------------------- /week1/5_rectangleXeno/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week1/5_rectangleXeno/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/src/main.cpp -------------------------------------------------------------------------------- /week1/5_rectangleXeno/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/src/ofApp.cpp -------------------------------------------------------------------------------- /week1/5_rectangleXeno/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/src/ofApp.h -------------------------------------------------------------------------------- /week1/5_rectangleXeno/src/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/src/rectangle.cpp -------------------------------------------------------------------------------- /week1/5_rectangleXeno/src/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/5_rectangleXeno/src/rectangle.h -------------------------------------------------------------------------------- /week1/circleDistancePct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/Makefile -------------------------------------------------------------------------------- /week1/circleDistancePct/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/Project.xcconfig -------------------------------------------------------------------------------- /week1/circleDistancePct/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/circleDistancePct/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/circleDistancePct/circleDistancePct.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/circleDistancePct.cbp -------------------------------------------------------------------------------- /week1/circleDistancePct/circleDistancePct.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/circleDistancePct.sln -------------------------------------------------------------------------------- /week1/circleDistancePct/circleDistancePct.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/circleDistancePct.vcxproj -------------------------------------------------------------------------------- /week1/circleDistancePct/circleDistancePct.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/circleDistancePct.workspace -------------------------------------------------------------------------------- /week1/circleDistancePct/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/config.make -------------------------------------------------------------------------------- /week1/circleDistancePct/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/icon.rc -------------------------------------------------------------------------------- /week1/circleDistancePct/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week1/circleDistancePct/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/src/main.cpp -------------------------------------------------------------------------------- /week1/circleDistancePct/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/src/ofApp.cpp -------------------------------------------------------------------------------- /week1/circleDistancePct/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/circleDistancePct/src/ofApp.h -------------------------------------------------------------------------------- /week1/drawingLinearStretch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/drawingLinearStretch/Makefile -------------------------------------------------------------------------------- /week1/drawingLinearStretch/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/drawingLinearStretch/Project.xcconfig -------------------------------------------------------------------------------- /week1/drawingLinearStretch/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/drawingLinearStretch/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/drawingLinearStretch/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/drawingLinearStretch/config.make -------------------------------------------------------------------------------- /week1/drawingLinearStretch/drawingLinearStretch.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/drawingLinearStretch/drawingLinearStretch.cbp -------------------------------------------------------------------------------- /week1/drawingLinearStretch/drawingLinearStretch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/drawingLinearStretch/drawingLinearStretch.sln -------------------------------------------------------------------------------- /week1/drawingLinearStretch/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/drawingLinearStretch/icon.rc -------------------------------------------------------------------------------- /week1/drawingLinearStretch/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/drawingLinearStretch/src/main.cpp -------------------------------------------------------------------------------- /week1/drawingLinearStretch/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/drawingLinearStretch/src/ofApp.cpp -------------------------------------------------------------------------------- /week1/drawingLinearStretch/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/drawingLinearStretch/src/ofApp.h -------------------------------------------------------------------------------- /week1/linearMapping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/Makefile -------------------------------------------------------------------------------- /week1/linearMapping/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/Project.xcconfig -------------------------------------------------------------------------------- /week1/linearMapping/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/linearMapping/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/linearMapping/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/config.make -------------------------------------------------------------------------------- /week1/linearMapping/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/icon.rc -------------------------------------------------------------------------------- /week1/linearMapping/linearMapping.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/linearMapping.cbp -------------------------------------------------------------------------------- /week1/linearMapping/linearMapping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/linearMapping.sln -------------------------------------------------------------------------------- /week1/linearMapping/linearMapping.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/linearMapping.vcxproj -------------------------------------------------------------------------------- /week1/linearMapping/linearMapping.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/linearMapping.vcxproj.filters -------------------------------------------------------------------------------- /week1/linearMapping/linearMapping.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/linearMapping.vcxproj.user -------------------------------------------------------------------------------- /week1/linearMapping/linearMapping.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/linearMapping.workspace -------------------------------------------------------------------------------- /week1/linearMapping/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week1/linearMapping/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/src/main.cpp -------------------------------------------------------------------------------- /week1/linearMapping/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/src/ofApp.cpp -------------------------------------------------------------------------------- /week1/linearMapping/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/linearMapping/src/ofApp.h -------------------------------------------------------------------------------- /week1/videoDrawing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/Makefile -------------------------------------------------------------------------------- /week1/videoDrawing/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/Project.xcconfig -------------------------------------------------------------------------------- /week1/videoDrawing/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/videoDrawing/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week1/videoDrawing/bin/data/fingers.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/bin/data/fingers.mov -------------------------------------------------------------------------------- /week1/videoDrawing/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/config.make -------------------------------------------------------------------------------- /week1/videoDrawing/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/icon.rc -------------------------------------------------------------------------------- /week1/videoDrawing/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week1/videoDrawing/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/src/main.cpp -------------------------------------------------------------------------------- /week1/videoDrawing/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/src/ofApp.cpp -------------------------------------------------------------------------------- /week1/videoDrawing/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/src/ofApp.h -------------------------------------------------------------------------------- /week1/videoDrawing/videoDrawing.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/videoDrawing.cbp -------------------------------------------------------------------------------- /week1/videoDrawing/videoDrawing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/videoDrawing.sln -------------------------------------------------------------------------------- /week1/videoDrawing/videoDrawing.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/videoDrawing.vcxproj -------------------------------------------------------------------------------- /week1/videoDrawing/videoDrawing.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/videoDrawing.vcxproj.filters -------------------------------------------------------------------------------- /week1/videoDrawing/videoDrawing.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/videoDrawing.vcxproj.user -------------------------------------------------------------------------------- /week1/videoDrawing/videoDrawing.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week1/videoDrawing/videoDrawing.workspace -------------------------------------------------------------------------------- /week2/0_sinExample/.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/.sln -------------------------------------------------------------------------------- /week2/0_sinExample/.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/.vcproj -------------------------------------------------------------------------------- /week2/0_sinExample/.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/.vcproj.user -------------------------------------------------------------------------------- /week2/0_sinExample/0_sinExample.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/0_sinExample.cbp -------------------------------------------------------------------------------- /week2/0_sinExample/0_sinExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/0_sinExample.sln -------------------------------------------------------------------------------- /week2/0_sinExample/0_sinExample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/0_sinExample.vcxproj -------------------------------------------------------------------------------- /week2/0_sinExample/0_sinExample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/0_sinExample.vcxproj.filters -------------------------------------------------------------------------------- /week2/0_sinExample/0_sinExample.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/0_sinExample.vcxproj.user -------------------------------------------------------------------------------- /week2/0_sinExample/0_sinExample.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/0_sinExample.workspace -------------------------------------------------------------------------------- /week2/0_sinExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/Makefile -------------------------------------------------------------------------------- /week2/0_sinExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/Project.xcconfig -------------------------------------------------------------------------------- /week2/0_sinExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/config.make -------------------------------------------------------------------------------- /week2/0_sinExample/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/icon.rc -------------------------------------------------------------------------------- /week2/0_sinExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week2/0_sinExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/src/main.cpp -------------------------------------------------------------------------------- /week2/0_sinExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/0_sinExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/0_sinExample/src/ofApp.h -------------------------------------------------------------------------------- /week2/1_sinExample_phase/1_sinExample_phase.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/1_sinExample_phase.cbp -------------------------------------------------------------------------------- /week2/1_sinExample_phase/1_sinExample_phase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/1_sinExample_phase.sln -------------------------------------------------------------------------------- /week2/1_sinExample_phase/1_sinExample_phase.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/1_sinExample_phase.vcxproj -------------------------------------------------------------------------------- /week2/1_sinExample_phase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/Makefile -------------------------------------------------------------------------------- /week2/1_sinExample_phase/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/Project.xcconfig -------------------------------------------------------------------------------- /week2/1_sinExample_phase/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/1_sinExample_phase/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/config.make -------------------------------------------------------------------------------- /week2/1_sinExample_phase/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/icon.rc -------------------------------------------------------------------------------- /week2/1_sinExample_phase/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week2/1_sinExample_phase/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/src/main.cpp -------------------------------------------------------------------------------- /week2/1_sinExample_phase/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/1_sinExample_phase/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/1_sinExample_phase/src/ofApp.h -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/2_sinExample3_AM.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/2_sinExample3_AM.cbp -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/2_sinExample3_AM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/2_sinExample3_AM.sln -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/2_sinExample3_AM.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/2_sinExample3_AM.vcxproj -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/Makefile -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/Project.xcconfig -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/config.make -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/icon.rc -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/src/main.cpp -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/2_sinExample3_AM/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/2_sinExample3_AM/src/ofApp.h -------------------------------------------------------------------------------- /week2/3_sinExample_circle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/3_sinExample_circle/Makefile -------------------------------------------------------------------------------- /week2/3_sinExample_circle/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/3_sinExample_circle/Project.xcconfig -------------------------------------------------------------------------------- /week2/3_sinExample_circle/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/3_sinExample_circle/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/3_sinExample_circle/config.make -------------------------------------------------------------------------------- /week2/3_sinExample_circle/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/3_sinExample_circle/icon.rc -------------------------------------------------------------------------------- /week2/3_sinExample_circle/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/3_sinExample_circle/src/main.cpp -------------------------------------------------------------------------------- /week2/3_sinExample_circle/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/3_sinExample_circle/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/3_sinExample_circle/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/3_sinExample_circle/src/ofApp.h -------------------------------------------------------------------------------- /week2/4_sinExample_pointRecorder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/4_sinExample_pointRecorder/Makefile -------------------------------------------------------------------------------- /week2/4_sinExample_pointRecorder/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/4_sinExample_pointRecorder/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/4_sinExample_pointRecorder/config.make -------------------------------------------------------------------------------- /week2/4_sinExample_pointRecorder/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/4_sinExample_pointRecorder/icon.rc -------------------------------------------------------------------------------- /week2/4_sinExample_pointRecorder/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/4_sinExample_pointRecorder/src/main.cpp -------------------------------------------------------------------------------- /week2/4_sinExample_pointRecorder/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/4_sinExample_pointRecorder/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/4_sinExample_pointRecorder/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/4_sinExample_pointRecorder/src/ofApp.h -------------------------------------------------------------------------------- /week2/5_sinExample_multiCircles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/5_sinExample_multiCircles/Makefile -------------------------------------------------------------------------------- /week2/5_sinExample_multiCircles/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/5_sinExample_multiCircles/Project.xcconfig -------------------------------------------------------------------------------- /week2/5_sinExample_multiCircles/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/5_sinExample_multiCircles/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/5_sinExample_multiCircles/config.make -------------------------------------------------------------------------------- /week2/5_sinExample_multiCircles/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/5_sinExample_multiCircles/icon.rc -------------------------------------------------------------------------------- /week2/5_sinExample_multiCircles/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/5_sinExample_multiCircles/src/main.cpp -------------------------------------------------------------------------------- /week2/5_sinExample_multiCircles/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/5_sinExample_multiCircles/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/5_sinExample_multiCircles/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/5_sinExample_multiCircles/src/ofApp.h -------------------------------------------------------------------------------- /week2/6_sinExample_circlePlusPath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/6_sinExample_circlePlusPath/Makefile -------------------------------------------------------------------------------- /week2/6_sinExample_circlePlusPath/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/6_sinExample_circlePlusPath/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/6_sinExample_circlePlusPath/config.make -------------------------------------------------------------------------------- /week2/6_sinExample_circlePlusPath/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/6_sinExample_circlePlusPath/icon.rc -------------------------------------------------------------------------------- /week2/6_sinExample_circlePlusPath/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/6_sinExample_circlePlusPath/src/main.cpp -------------------------------------------------------------------------------- /week2/6_sinExample_circlePlusPath/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/6_sinExample_circlePlusPath/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/6_sinExample_circlePlusPath/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/6_sinExample_circlePlusPath/src/ofApp.h -------------------------------------------------------------------------------- /week2/7_sinExample_circlePlusPath_lissajus/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/8_sinExample_atan/8_sinExample_atan.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/8_sinExample_atan.cbp -------------------------------------------------------------------------------- /week2/8_sinExample_atan/8_sinExample_atan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/8_sinExample_atan.sln -------------------------------------------------------------------------------- /week2/8_sinExample_atan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/Makefile -------------------------------------------------------------------------------- /week2/8_sinExample_atan/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/Project.xcconfig -------------------------------------------------------------------------------- /week2/8_sinExample_atan/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/8_sinExample_atan/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/config.make -------------------------------------------------------------------------------- /week2/8_sinExample_atan/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/icon.rc -------------------------------------------------------------------------------- /week2/8_sinExample_atan/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/src/main.cpp -------------------------------------------------------------------------------- /week2/8_sinExample_atan/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/8_sinExample_atan/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/src/ofApp.h -------------------------------------------------------------------------------- /week2/8_sinExample_atan/src/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/src/rectangle.cpp -------------------------------------------------------------------------------- /week2/8_sinExample_atan/src/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/8_sinExample_atan/src/rectangle.h -------------------------------------------------------------------------------- /week2/angleGrid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleGrid/Makefile -------------------------------------------------------------------------------- /week2/angleGrid/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleGrid/Project.xcconfig -------------------------------------------------------------------------------- /week2/angleGrid/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/angleGrid/angleGrid.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleGrid/angleGrid.cbp -------------------------------------------------------------------------------- /week2/angleGrid/angleGrid.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleGrid/angleGrid.workspace -------------------------------------------------------------------------------- /week2/angleGrid/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/angleGrid/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleGrid/config.make -------------------------------------------------------------------------------- /week2/angleGrid/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleGrid/icon.rc -------------------------------------------------------------------------------- /week2/angleGrid/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleGrid/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week2/angleGrid/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleGrid/src/main.cpp -------------------------------------------------------------------------------- /week2/angleGrid/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleGrid/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/angleGrid/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleGrid/src/ofApp.h -------------------------------------------------------------------------------- /week2/angleSmooth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleSmooth/Makefile -------------------------------------------------------------------------------- /week2/angleSmooth/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleSmooth/Project.xcconfig -------------------------------------------------------------------------------- /week2/angleSmooth/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/angleSmooth/angleSmooth.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleSmooth/angleSmooth.cbp -------------------------------------------------------------------------------- /week2/angleSmooth/angleSmooth.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleSmooth/angleSmooth.workspace -------------------------------------------------------------------------------- /week2/angleSmooth/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/angleSmooth/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleSmooth/config.make -------------------------------------------------------------------------------- /week2/angleSmooth/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleSmooth/icon.rc -------------------------------------------------------------------------------- /week2/angleSmooth/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleSmooth/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week2/angleSmooth/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleSmooth/src/main.cpp -------------------------------------------------------------------------------- /week2/angleSmooth/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleSmooth/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/angleSmooth/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleSmooth/src/ofApp.h -------------------------------------------------------------------------------- /week2/angleStrokeWidth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleStrokeWidth/Makefile -------------------------------------------------------------------------------- /week2/angleStrokeWidth/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleStrokeWidth/Project.xcconfig -------------------------------------------------------------------------------- /week2/angleStrokeWidth/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/angleStrokeWidth/angleStrokeWidth.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleStrokeWidth/angleStrokeWidth.cbp -------------------------------------------------------------------------------- /week2/angleStrokeWidth/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week2/angleStrokeWidth/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleStrokeWidth/config.make -------------------------------------------------------------------------------- /week2/angleStrokeWidth/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleStrokeWidth/icon.rc -------------------------------------------------------------------------------- /week2/angleStrokeWidth/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleStrokeWidth/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week2/angleStrokeWidth/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleStrokeWidth/src/main.cpp -------------------------------------------------------------------------------- /week2/angleStrokeWidth/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleStrokeWidth/src/ofApp.cpp -------------------------------------------------------------------------------- /week2/angleStrokeWidth/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week2/angleStrokeWidth/src/ofApp.h -------------------------------------------------------------------------------- /week3/10_noise/.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/.sln -------------------------------------------------------------------------------- /week3/10_noise/.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/.vcproj -------------------------------------------------------------------------------- /week3/10_noise/.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/.vcproj.user -------------------------------------------------------------------------------- /week3/10_noise/10_noise.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/10_noise.cbp -------------------------------------------------------------------------------- /week3/10_noise/10_noise.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/10_noise.sln -------------------------------------------------------------------------------- /week3/10_noise/10_noise.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/10_noise.vcxproj -------------------------------------------------------------------------------- /week3/10_noise/10_noise.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/10_noise.vcxproj.filters -------------------------------------------------------------------------------- /week3/10_noise/10_noise.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/10_noise.vcxproj.user -------------------------------------------------------------------------------- /week3/10_noise/10_noise.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/10_noise.workspace -------------------------------------------------------------------------------- /week3/10_noise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/Makefile -------------------------------------------------------------------------------- /week3/10_noise/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/Project.xcconfig -------------------------------------------------------------------------------- /week3/10_noise/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/config.make -------------------------------------------------------------------------------- /week3/10_noise/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/icon.rc -------------------------------------------------------------------------------- /week3/10_noise/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week3/10_noise/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/src/main.cpp -------------------------------------------------------------------------------- /week3/10_noise/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/src/ofApp.cpp -------------------------------------------------------------------------------- /week3/10_noise/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/10_noise/src/ofApp.h -------------------------------------------------------------------------------- /week3/11_noise/.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/.sln -------------------------------------------------------------------------------- /week3/11_noise/.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/.vcproj -------------------------------------------------------------------------------- /week3/11_noise/.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/.vcproj.user -------------------------------------------------------------------------------- /week3/11_noise/11_noise.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/11_noise.cbp -------------------------------------------------------------------------------- /week3/11_noise/11_noise.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/11_noise.sln -------------------------------------------------------------------------------- /week3/11_noise/11_noise.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/11_noise.vcxproj -------------------------------------------------------------------------------- /week3/11_noise/11_noise.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/11_noise.vcxproj.filters -------------------------------------------------------------------------------- /week3/11_noise/11_noise.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/11_noise.vcxproj.user -------------------------------------------------------------------------------- /week3/11_noise/11_noise.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/11_noise.workspace -------------------------------------------------------------------------------- /week3/11_noise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/Makefile -------------------------------------------------------------------------------- /week3/11_noise/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/Project.xcconfig -------------------------------------------------------------------------------- /week3/11_noise/bin/data/sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/bin/data/sunset.png -------------------------------------------------------------------------------- /week3/11_noise/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/config.make -------------------------------------------------------------------------------- /week3/11_noise/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/icon.rc -------------------------------------------------------------------------------- /week3/11_noise/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week3/11_noise/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/src/main.cpp -------------------------------------------------------------------------------- /week3/11_noise/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/src/ofApp.cpp -------------------------------------------------------------------------------- /week3/11_noise/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/11_noise/src/ofApp.h -------------------------------------------------------------------------------- /week3/1_drawingWithTime_1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/1_drawingWithTime_1/Makefile -------------------------------------------------------------------------------- /week3/1_drawingWithTime_1/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/1_drawingWithTime_1/Project.xcconfig -------------------------------------------------------------------------------- /week3/1_drawingWithTime_1/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/1_drawingWithTime_1/config.make -------------------------------------------------------------------------------- /week3/1_drawingWithTime_1/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/1_drawingWithTime_1/icon.rc -------------------------------------------------------------------------------- /week3/1_drawingWithTime_1/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/1_drawingWithTime_1/src/main.cpp -------------------------------------------------------------------------------- /week3/1_drawingWithTime_1/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/1_drawingWithTime_1/src/ofApp.cpp -------------------------------------------------------------------------------- /week3/1_drawingWithTime_1/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/1_drawingWithTime_1/src/ofApp.h -------------------------------------------------------------------------------- /week3/1_drawingWithTime_1/src/timePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/1_drawingWithTime_1/src/timePoint.cpp -------------------------------------------------------------------------------- /week3/1_drawingWithTime_1/src/timePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/1_drawingWithTime_1/src/timePoint.h -------------------------------------------------------------------------------- /week3/2_drawingWithTime_2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/2_drawingWithTime_2/Makefile -------------------------------------------------------------------------------- /week3/2_drawingWithTime_2/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/2_drawingWithTime_2/Project.xcconfig -------------------------------------------------------------------------------- /week3/2_drawingWithTime_2/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/2_drawingWithTime_2/config.make -------------------------------------------------------------------------------- /week3/2_drawingWithTime_2/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/2_drawingWithTime_2/icon.rc -------------------------------------------------------------------------------- /week3/2_drawingWithTime_2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/2_drawingWithTime_2/src/main.cpp -------------------------------------------------------------------------------- /week3/2_drawingWithTime_2/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/2_drawingWithTime_2/src/ofApp.cpp -------------------------------------------------------------------------------- /week3/2_drawingWithTime_2/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/2_drawingWithTime_2/src/ofApp.h -------------------------------------------------------------------------------- /week3/2_drawingWithTime_2/src/timePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/2_drawingWithTime_2/src/timePoint.cpp -------------------------------------------------------------------------------- /week3/2_drawingWithTime_2/src/timePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/2_drawingWithTime_2/src/timePoint.h -------------------------------------------------------------------------------- /week3/3_drawingWithTime_3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/3_drawingWithTime_3/Makefile -------------------------------------------------------------------------------- /week3/3_drawingWithTime_3/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/3_drawingWithTime_3/Project.xcconfig -------------------------------------------------------------------------------- /week3/3_drawingWithTime_3/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/3_drawingWithTime_3/config.make -------------------------------------------------------------------------------- /week3/3_drawingWithTime_3/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/3_drawingWithTime_3/icon.rc -------------------------------------------------------------------------------- /week3/3_drawingWithTime_3/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/3_drawingWithTime_3/src/main.cpp -------------------------------------------------------------------------------- /week3/3_drawingWithTime_3/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/3_drawingWithTime_3/src/ofApp.cpp -------------------------------------------------------------------------------- /week3/3_drawingWithTime_3/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/3_drawingWithTime_3/src/ofApp.h -------------------------------------------------------------------------------- /week3/3_drawingWithTime_3/src/timePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/3_drawingWithTime_3/src/timePoint.cpp -------------------------------------------------------------------------------- /week3/3_drawingWithTime_3/src/timePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/3_drawingWithTime_3/src/timePoint.h -------------------------------------------------------------------------------- /week3/4_drawingWithTime_4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/4_drawingWithTime_4/Makefile -------------------------------------------------------------------------------- /week3/4_drawingWithTime_4/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/4_drawingWithTime_4/Project.xcconfig -------------------------------------------------------------------------------- /week3/4_drawingWithTime_4/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/4_drawingWithTime_4/config.make -------------------------------------------------------------------------------- /week3/4_drawingWithTime_4/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/4_drawingWithTime_4/icon.rc -------------------------------------------------------------------------------- /week3/4_drawingWithTime_4/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/4_drawingWithTime_4/src/main.cpp -------------------------------------------------------------------------------- /week3/4_drawingWithTime_4/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/4_drawingWithTime_4/src/ofApp.cpp -------------------------------------------------------------------------------- /week3/4_drawingWithTime_4/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/4_drawingWithTime_4/src/ofApp.h -------------------------------------------------------------------------------- /week3/4_drawingWithTime_4/src/timePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/4_drawingWithTime_4/src/timePoint.cpp -------------------------------------------------------------------------------- /week3/4_drawingWithTime_4/src/timePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/4_drawingWithTime_4/src/timePoint.h -------------------------------------------------------------------------------- /week3/5_drawingWithTime_5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/5_drawingWithTime_5/Makefile -------------------------------------------------------------------------------- /week3/5_drawingWithTime_5/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/5_drawingWithTime_5/Project.xcconfig -------------------------------------------------------------------------------- /week3/5_drawingWithTime_5/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/5_drawingWithTime_5/config.make -------------------------------------------------------------------------------- /week3/5_drawingWithTime_5/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/5_drawingWithTime_5/icon.rc -------------------------------------------------------------------------------- /week3/5_drawingWithTime_5/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/5_drawingWithTime_5/src/main.cpp -------------------------------------------------------------------------------- /week3/5_drawingWithTime_5/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/5_drawingWithTime_5/src/ofApp.cpp -------------------------------------------------------------------------------- /week3/5_drawingWithTime_5/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/5_drawingWithTime_5/src/ofApp.h -------------------------------------------------------------------------------- /week3/5_drawingWithTime_5/src/timePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/5_drawingWithTime_5/src/timePoint.cpp -------------------------------------------------------------------------------- /week3/5_drawingWithTime_5/src/timePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/5_drawingWithTime_5/src/timePoint.h -------------------------------------------------------------------------------- /week3/6_drawingWithTime_6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/6_drawingWithTime_6/Makefile -------------------------------------------------------------------------------- /week3/6_drawingWithTime_6/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/6_drawingWithTime_6/Project.xcconfig -------------------------------------------------------------------------------- /week3/6_drawingWithTime_6/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week3/6_drawingWithTime_6/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/6_drawingWithTime_6/config.make -------------------------------------------------------------------------------- /week3/6_drawingWithTime_6/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/6_drawingWithTime_6/icon.rc -------------------------------------------------------------------------------- /week3/6_drawingWithTime_6/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/6_drawingWithTime_6/src/main.cpp -------------------------------------------------------------------------------- /week3/6_drawingWithTime_6/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/6_drawingWithTime_6/src/ofApp.cpp -------------------------------------------------------------------------------- /week3/6_drawingWithTime_6/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/6_drawingWithTime_6/src/ofApp.h -------------------------------------------------------------------------------- /week3/6_drawingWithTime_6/src/timePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/6_drawingWithTime_6/src/timePoint.cpp -------------------------------------------------------------------------------- /week3/6_drawingWithTime_6/src/timePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/6_drawingWithTime_6/src/timePoint.h -------------------------------------------------------------------------------- /week3/9_noise/.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/.sln -------------------------------------------------------------------------------- /week3/9_noise/.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/.vcproj -------------------------------------------------------------------------------- /week3/9_noise/.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/.vcproj.user -------------------------------------------------------------------------------- /week3/9_noise/9_noise.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/9_noise.cbp -------------------------------------------------------------------------------- /week3/9_noise/9_noise.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/9_noise.sln -------------------------------------------------------------------------------- /week3/9_noise/9_noise.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/9_noise.vcxproj -------------------------------------------------------------------------------- /week3/9_noise/9_noise.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/9_noise.vcxproj.filters -------------------------------------------------------------------------------- /week3/9_noise/9_noise.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/9_noise.vcxproj.user -------------------------------------------------------------------------------- /week3/9_noise/9_noise.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/9_noise.workspace -------------------------------------------------------------------------------- /week3/9_noise/9_noise.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/9_noise.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week3/9_noise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/Makefile -------------------------------------------------------------------------------- /week3/9_noise/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/Project.xcconfig -------------------------------------------------------------------------------- /week3/9_noise/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/config.make -------------------------------------------------------------------------------- /week3/9_noise/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/icon.rc -------------------------------------------------------------------------------- /week3/9_noise/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week3/9_noise/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/src/main.cpp -------------------------------------------------------------------------------- /week3/9_noise/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/src/ofApp.cpp -------------------------------------------------------------------------------- /week3/9_noise/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/9_noise/src/ofApp.h -------------------------------------------------------------------------------- /week3/multipleDrawings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/multipleDrawings/Makefile -------------------------------------------------------------------------------- /week3/multipleDrawings/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/multipleDrawings/Project.xcconfig -------------------------------------------------------------------------------- /week3/multipleDrawings/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week3/multipleDrawings/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week3/multipleDrawings/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/multipleDrawings/config.make -------------------------------------------------------------------------------- /week3/multipleDrawings/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/multipleDrawings/icon.rc -------------------------------------------------------------------------------- /week3/multipleDrawings/multipleDrawings.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/multipleDrawings/multipleDrawings.cbp -------------------------------------------------------------------------------- /week3/multipleDrawings/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/multipleDrawings/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week3/multipleDrawings/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/multipleDrawings/src/main.cpp -------------------------------------------------------------------------------- /week3/multipleDrawings/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/multipleDrawings/src/ofApp.cpp -------------------------------------------------------------------------------- /week3/multipleDrawings/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week3/multipleDrawings/src/ofApp.h -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/Makefile -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/Project.xcconfig -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/bounceOffTheWalls.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/bounceOffTheWalls.cbp -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/bounceOffTheWalls.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/bounceOffTheWalls.sln -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/config.make -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/icon.rc -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/src/main.cpp -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/src/ofApp.cpp -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/src/ofApp.h -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/src/particle.cpp -------------------------------------------------------------------------------- /week4/bounceOffTheWalls/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/bounceOffTheWalls/src/particle.h -------------------------------------------------------------------------------- /week4/drawingWithParticles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles/Makefile -------------------------------------------------------------------------------- /week4/drawingWithParticles/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles/Project.xcconfig -------------------------------------------------------------------------------- /week4/drawingWithParticles/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week4/drawingWithParticles/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles/config.make -------------------------------------------------------------------------------- /week4/drawingWithParticles/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles/icon.rc -------------------------------------------------------------------------------- /week4/drawingWithParticles/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles/src/main.cpp -------------------------------------------------------------------------------- /week4/drawingWithParticles/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles/src/ofApp.cpp -------------------------------------------------------------------------------- /week4/drawingWithParticles/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles/src/ofApp.h -------------------------------------------------------------------------------- /week4/drawingWithParticles/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles/src/particle.cpp -------------------------------------------------------------------------------- /week4/drawingWithParticles/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles/src/particle.h -------------------------------------------------------------------------------- /week4/drawingWithParticles2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles2/Makefile -------------------------------------------------------------------------------- /week4/drawingWithParticles2/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles2/Project.xcconfig -------------------------------------------------------------------------------- /week4/drawingWithParticles2/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week4/drawingWithParticles2/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles2/config.make -------------------------------------------------------------------------------- /week4/drawingWithParticles2/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles2/icon.rc -------------------------------------------------------------------------------- /week4/drawingWithParticles2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles2/src/main.cpp -------------------------------------------------------------------------------- /week4/drawingWithParticles2/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles2/src/ofApp.cpp -------------------------------------------------------------------------------- /week4/drawingWithParticles2/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles2/src/ofApp.h -------------------------------------------------------------------------------- /week4/drawingWithParticles2/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles2/src/particle.cpp -------------------------------------------------------------------------------- /week4/drawingWithParticles2/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/drawingWithParticles2/src/particle.h -------------------------------------------------------------------------------- /week4/multiParticles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/Makefile -------------------------------------------------------------------------------- /week4/multiParticles/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/Project.xcconfig -------------------------------------------------------------------------------- /week4/multiParticles/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week4/multiParticles/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/config.make -------------------------------------------------------------------------------- /week4/multiParticles/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/icon.rc -------------------------------------------------------------------------------- /week4/multiParticles/multiParticles.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/multiParticles.cbp -------------------------------------------------------------------------------- /week4/multiParticles/multiParticles.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/multiParticles.sln -------------------------------------------------------------------------------- /week4/multiParticles/multiParticles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/multiParticles.vcxproj -------------------------------------------------------------------------------- /week4/multiParticles/multiParticles.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/multiParticles.vcxproj.user -------------------------------------------------------------------------------- /week4/multiParticles/multiParticles.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/multiParticles.workspace -------------------------------------------------------------------------------- /week4/multiParticles/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week4/multiParticles/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/src/main.cpp -------------------------------------------------------------------------------- /week4/multiParticles/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/src/ofApp.cpp -------------------------------------------------------------------------------- /week4/multiParticles/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/src/ofApp.h -------------------------------------------------------------------------------- /week4/multiParticles/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/src/particle.cpp -------------------------------------------------------------------------------- /week4/multiParticles/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/multiParticles/src/particle.h -------------------------------------------------------------------------------- /week4/singleParticle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/Makefile -------------------------------------------------------------------------------- /week4/singleParticle/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/Project.xcconfig -------------------------------------------------------------------------------- /week4/singleParticle/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week4/singleParticle/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/config.make -------------------------------------------------------------------------------- /week4/singleParticle/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/icon.rc -------------------------------------------------------------------------------- /week4/singleParticle/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week4/singleParticle/singleParticle.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/singleParticle.cbp -------------------------------------------------------------------------------- /week4/singleParticle/singleParticle.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/singleParticle.sln -------------------------------------------------------------------------------- /week4/singleParticle/singleParticle.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/singleParticle.vcxproj -------------------------------------------------------------------------------- /week4/singleParticle/singleParticle.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/singleParticle.vcxproj.user -------------------------------------------------------------------------------- /week4/singleParticle/singleParticle.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/singleParticle.workspace -------------------------------------------------------------------------------- /week4/singleParticle/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/src/main.cpp -------------------------------------------------------------------------------- /week4/singleParticle/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/src/ofApp.cpp -------------------------------------------------------------------------------- /week4/singleParticle/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/src/ofApp.h -------------------------------------------------------------------------------- /week4/singleParticle/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/src/particle.cpp -------------------------------------------------------------------------------- /week4/singleParticle/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week4/singleParticle/src/particle.h -------------------------------------------------------------------------------- /week5/attractionRepulsion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion/Makefile -------------------------------------------------------------------------------- /week5/attractionRepulsion/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion/Project.xcconfig -------------------------------------------------------------------------------- /week5/attractionRepulsion/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week5/attractionRepulsion/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion/config.make -------------------------------------------------------------------------------- /week5/attractionRepulsion/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion/icon.rc -------------------------------------------------------------------------------- /week5/attractionRepulsion/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion/src/main.cpp -------------------------------------------------------------------------------- /week5/attractionRepulsion/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion/src/ofApp.cpp -------------------------------------------------------------------------------- /week5/attractionRepulsion/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion/src/ofApp.h -------------------------------------------------------------------------------- /week5/attractionRepulsion/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion/src/particle.cpp -------------------------------------------------------------------------------- /week5/attractionRepulsion/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion/src/particle.h -------------------------------------------------------------------------------- /week5/attractionRepulsion2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion2/Makefile -------------------------------------------------------------------------------- /week5/attractionRepulsion2/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion2/Project.xcconfig -------------------------------------------------------------------------------- /week5/attractionRepulsion2/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week5/attractionRepulsion2/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion2/config.make -------------------------------------------------------------------------------- /week5/attractionRepulsion2/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion2/icon.rc -------------------------------------------------------------------------------- /week5/attractionRepulsion2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion2/src/main.cpp -------------------------------------------------------------------------------- /week5/attractionRepulsion2/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion2/src/ofApp.cpp -------------------------------------------------------------------------------- /week5/attractionRepulsion2/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion2/src/ofApp.h -------------------------------------------------------------------------------- /week5/attractionRepulsion2/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion2/src/particle.cpp -------------------------------------------------------------------------------- /week5/attractionRepulsion2/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/attractionRepulsion2/src/particle.h -------------------------------------------------------------------------------- /week5/timerExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/timerExample/Makefile -------------------------------------------------------------------------------- /week5/timerExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/timerExample/Project.xcconfig -------------------------------------------------------------------------------- /week5/timerExample/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week5/timerExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week5/timerExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/timerExample/config.make -------------------------------------------------------------------------------- /week5/timerExample/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/timerExample/icon.rc -------------------------------------------------------------------------------- /week5/timerExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/timerExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week5/timerExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/timerExample/src/main.cpp -------------------------------------------------------------------------------- /week5/timerExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/timerExample/src/ofApp.cpp -------------------------------------------------------------------------------- /week5/timerExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/timerExample/src/ofApp.h -------------------------------------------------------------------------------- /week5/timerExample/timerExample.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/timerExample/timerExample.cbp -------------------------------------------------------------------------------- /week5/timerExample/timerExample.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/timerExample/timerExample.workspace -------------------------------------------------------------------------------- /week5/vectorField/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/Makefile -------------------------------------------------------------------------------- /week5/vectorField/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/Project.xcconfig -------------------------------------------------------------------------------- /week5/vectorField/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week5/vectorField/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/config.make -------------------------------------------------------------------------------- /week5/vectorField/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/icon.rc -------------------------------------------------------------------------------- /week5/vectorField/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week5/vectorField/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/src/main.cpp -------------------------------------------------------------------------------- /week5/vectorField/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/src/ofApp.cpp -------------------------------------------------------------------------------- /week5/vectorField/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/src/ofApp.h -------------------------------------------------------------------------------- /week5/vectorField/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/src/particle.cpp -------------------------------------------------------------------------------- /week5/vectorField/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/src/particle.h -------------------------------------------------------------------------------- /week5/vectorField/src/vectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/src/vectorField.cpp -------------------------------------------------------------------------------- /week5/vectorField/src/vectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/src/vectorField.h -------------------------------------------------------------------------------- /week5/vectorField/vectorField.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/vectorField.cbp -------------------------------------------------------------------------------- /week5/vectorField/vectorField.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/vectorField.sln -------------------------------------------------------------------------------- /week5/vectorField/vectorField.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/vectorField.vcxproj -------------------------------------------------------------------------------- /week5/vectorField/vectorField.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/vectorField.vcxproj.filters -------------------------------------------------------------------------------- /week5/vectorField/vectorField.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/vectorField.vcxproj.user -------------------------------------------------------------------------------- /week5/vectorField/vectorField.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField/vectorField.workspace -------------------------------------------------------------------------------- /week5/vectorField_drawings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/Makefile -------------------------------------------------------------------------------- /week5/vectorField_drawings/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/Project.xcconfig -------------------------------------------------------------------------------- /week5/vectorField_drawings/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week5/vectorField_drawings/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/config.make -------------------------------------------------------------------------------- /week5/vectorField_drawings/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/icon.rc -------------------------------------------------------------------------------- /week5/vectorField_drawings/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/src/main.cpp -------------------------------------------------------------------------------- /week5/vectorField_drawings/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/src/ofApp.cpp -------------------------------------------------------------------------------- /week5/vectorField_drawings/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/src/ofApp.h -------------------------------------------------------------------------------- /week5/vectorField_drawings/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/src/particle.cpp -------------------------------------------------------------------------------- /week5/vectorField_drawings/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/src/particle.h -------------------------------------------------------------------------------- /week5/vectorField_drawings/src/vectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/src/vectorField.cpp -------------------------------------------------------------------------------- /week5/vectorField_drawings/src/vectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_drawings/src/vectorField.h -------------------------------------------------------------------------------- /week5/vectorField_wParticles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/Makefile -------------------------------------------------------------------------------- /week5/vectorField_wParticles/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/Project.xcconfig -------------------------------------------------------------------------------- /week5/vectorField_wParticles/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week5/vectorField_wParticles/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/config.make -------------------------------------------------------------------------------- /week5/vectorField_wParticles/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/icon.rc -------------------------------------------------------------------------------- /week5/vectorField_wParticles/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/src/main.cpp -------------------------------------------------------------------------------- /week5/vectorField_wParticles/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/src/ofApp.cpp -------------------------------------------------------------------------------- /week5/vectorField_wParticles/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/src/ofApp.h -------------------------------------------------------------------------------- /week5/vectorField_wParticles/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/src/particle.cpp -------------------------------------------------------------------------------- /week5/vectorField_wParticles/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/src/particle.h -------------------------------------------------------------------------------- /week5/vectorField_wParticles/src/vectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/src/vectorField.cpp -------------------------------------------------------------------------------- /week5/vectorField_wParticles/src/vectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week5/vectorField_wParticles/src/vectorField.h -------------------------------------------------------------------------------- /week6/1_particle_particle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/1_particle_particle/Makefile -------------------------------------------------------------------------------- /week6/1_particle_particle/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/1_particle_particle/Project.xcconfig -------------------------------------------------------------------------------- /week6/1_particle_particle/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week6/1_particle_particle/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/1_particle_particle/config.make -------------------------------------------------------------------------------- /week6/1_particle_particle/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/1_particle_particle/icon.rc -------------------------------------------------------------------------------- /week6/1_particle_particle/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/1_particle_particle/src/main.cpp -------------------------------------------------------------------------------- /week6/1_particle_particle/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/1_particle_particle/src/ofApp.cpp -------------------------------------------------------------------------------- /week6/1_particle_particle/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/1_particle_particle/src/ofApp.h -------------------------------------------------------------------------------- /week6/1_particle_particle/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/1_particle_particle/src/particle.cpp -------------------------------------------------------------------------------- /week6/1_particle_particle/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/1_particle_particle/src/particle.h -------------------------------------------------------------------------------- /week6/2_particle_particle_manyAreSlow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/2_particle_particle_manyAreSlow/Makefile -------------------------------------------------------------------------------- /week6/2_particle_particle_manyAreSlow/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week6/2_particle_particle_manyAreSlow/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/2_particle_particle_manyAreSlow/icon.rc -------------------------------------------------------------------------------- /week6/3_mixing_forces/3_mixing_forces.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/3_mixing_forces.cbp -------------------------------------------------------------------------------- /week6/3_mixing_forces/3_mixing_forces.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/3_mixing_forces.sln -------------------------------------------------------------------------------- /week6/3_mixing_forces/3_mixing_forces.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/3_mixing_forces.vcxproj -------------------------------------------------------------------------------- /week6/3_mixing_forces/3_mixing_forces.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/3_mixing_forces.workspace -------------------------------------------------------------------------------- /week6/3_mixing_forces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/Makefile -------------------------------------------------------------------------------- /week6/3_mixing_forces/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/Project.xcconfig -------------------------------------------------------------------------------- /week6/3_mixing_forces/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week6/3_mixing_forces/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/config.make -------------------------------------------------------------------------------- /week6/3_mixing_forces/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/icon.rc -------------------------------------------------------------------------------- /week6/3_mixing_forces/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week6/3_mixing_forces/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/src/main.cpp -------------------------------------------------------------------------------- /week6/3_mixing_forces/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/src/ofApp.cpp -------------------------------------------------------------------------------- /week6/3_mixing_forces/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/src/ofApp.h -------------------------------------------------------------------------------- /week6/3_mixing_forces/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/src/particle.cpp -------------------------------------------------------------------------------- /week6/3_mixing_forces/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/3_mixing_forces/src/particle.h -------------------------------------------------------------------------------- /week6/particlePointer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/Makefile -------------------------------------------------------------------------------- /week6/particlePointer/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/Project.xcconfig -------------------------------------------------------------------------------- /week6/particlePointer/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week6/particlePointer/bin/data/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/bin/data/star.png -------------------------------------------------------------------------------- /week6/particlePointer/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/config.make -------------------------------------------------------------------------------- /week6/particlePointer/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/icon.rc -------------------------------------------------------------------------------- /week6/particlePointer/multiParticles.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/multiParticles.cbp -------------------------------------------------------------------------------- /week6/particlePointer/multiParticles.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/multiParticles.sln -------------------------------------------------------------------------------- /week6/particlePointer/multiParticles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/multiParticles.vcxproj -------------------------------------------------------------------------------- /week6/particlePointer/multiParticles.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/multiParticles.workspace -------------------------------------------------------------------------------- /week6/particlePointer/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week6/particlePointer/particlePointer.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/particlePointer.cbp -------------------------------------------------------------------------------- /week6/particlePointer/particlePointer.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/particlePointer.workspace -------------------------------------------------------------------------------- /week6/particlePointer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/src/main.cpp -------------------------------------------------------------------------------- /week6/particlePointer/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/src/ofApp.cpp -------------------------------------------------------------------------------- /week6/particlePointer/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/src/ofApp.h -------------------------------------------------------------------------------- /week6/particlePointer/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/src/particle.cpp -------------------------------------------------------------------------------- /week6/particlePointer/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointer/src/particle.h -------------------------------------------------------------------------------- /week6/particlePointerFont/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/Makefile -------------------------------------------------------------------------------- /week6/particlePointerFont/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/Project.xcconfig -------------------------------------------------------------------------------- /week6/particlePointerFont/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/config.make -------------------------------------------------------------------------------- /week6/particlePointerFont/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/icon.rc -------------------------------------------------------------------------------- /week6/particlePointerFont/multiParticles.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/multiParticles.cbp -------------------------------------------------------------------------------- /week6/particlePointerFont/multiParticles.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/multiParticles.sln -------------------------------------------------------------------------------- /week6/particlePointerFont/multiParticles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/multiParticles.vcxproj -------------------------------------------------------------------------------- /week6/particlePointerFont/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/src/main.cpp -------------------------------------------------------------------------------- /week6/particlePointerFont/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/src/ofApp.cpp -------------------------------------------------------------------------------- /week6/particlePointerFont/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/src/ofApp.h -------------------------------------------------------------------------------- /week6/particlePointerFont/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/src/particle.cpp -------------------------------------------------------------------------------- /week6/particlePointerFont/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/particlePointerFont/src/particle.h -------------------------------------------------------------------------------- /week6/vectorField_video/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/Makefile -------------------------------------------------------------------------------- /week6/vectorField_video/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/Project.xcconfig -------------------------------------------------------------------------------- /week6/vectorField_video/addons.make: -------------------------------------------------------------------------------- 1 | ofxOpenCv 2 | -------------------------------------------------------------------------------- /week6/vectorField_video/bin/data/fingers.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/bin/data/fingers.mov -------------------------------------------------------------------------------- /week6/vectorField_video/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/config.make -------------------------------------------------------------------------------- /week6/vectorField_video/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/icon.rc -------------------------------------------------------------------------------- /week6/vectorField_video/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/src/main.cpp -------------------------------------------------------------------------------- /week6/vectorField_video/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/src/ofApp.cpp -------------------------------------------------------------------------------- /week6/vectorField_video/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/src/ofApp.h -------------------------------------------------------------------------------- /week6/vectorField_video/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/src/particle.cpp -------------------------------------------------------------------------------- /week6/vectorField_video/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/src/particle.h -------------------------------------------------------------------------------- /week6/vectorField_video/src/vectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/src/vectorField.cpp -------------------------------------------------------------------------------- /week6/vectorField_video/src/vectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/src/vectorField.h -------------------------------------------------------------------------------- /week6/vectorField_video/vectorField_video.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/vectorField_video.cbp -------------------------------------------------------------------------------- /week6/vectorField_video/vectorField_video.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week6/vectorField_video/vectorField_video.sln -------------------------------------------------------------------------------- /week7/1_particle_w_image/1_particle_w_image.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/1_particle_w_image.cbp -------------------------------------------------------------------------------- /week7/1_particle_w_image/1_particle_w_image.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/1_particle_w_image.sln -------------------------------------------------------------------------------- /week7/1_particle_w_image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/Makefile -------------------------------------------------------------------------------- /week7/1_particle_w_image/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/Project.xcconfig -------------------------------------------------------------------------------- /week7/1_particle_w_image/bin/data/spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/bin/data/spot.png -------------------------------------------------------------------------------- /week7/1_particle_w_image/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/config.make -------------------------------------------------------------------------------- /week7/1_particle_w_image/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/icon.rc -------------------------------------------------------------------------------- /week7/1_particle_w_image/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/src/main.cpp -------------------------------------------------------------------------------- /week7/1_particle_w_image/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/src/ofApp.cpp -------------------------------------------------------------------------------- /week7/1_particle_w_image/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/src/ofApp.h -------------------------------------------------------------------------------- /week7/1_particle_w_image/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/src/particle.cpp -------------------------------------------------------------------------------- /week7/1_particle_w_image/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/1_particle_w_image/src/particle.h -------------------------------------------------------------------------------- /week7/2_particle_particle_binning/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/2_particle_particle_binning/Makefile -------------------------------------------------------------------------------- /week7/2_particle_particle_binning/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week7/2_particle_particle_binning/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/2_particle_particle_binning/config.make -------------------------------------------------------------------------------- /week7/2_particle_particle_binning/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/2_particle_particle_binning/icon.rc -------------------------------------------------------------------------------- /week7/2_particle_particle_binning/src/binner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/2_particle_particle_binning/src/binner.cpp -------------------------------------------------------------------------------- /week7/2_particle_particle_binning/src/binner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/2_particle_particle_binning/src/binner.h -------------------------------------------------------------------------------- /week7/2_particle_particle_binning/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/2_particle_particle_binning/src/main.cpp -------------------------------------------------------------------------------- /week7/2_particle_particle_binning/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/2_particle_particle_binning/src/ofApp.cpp -------------------------------------------------------------------------------- /week7/2_particle_particle_binning/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/2_particle_particle_binning/src/ofApp.h -------------------------------------------------------------------------------- /week7/2_particle_particle_binning/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/2_particle_particle_binning/src/particle.h -------------------------------------------------------------------------------- /week7/3_particle_particle_fast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_fast/Makefile -------------------------------------------------------------------------------- /week7/3_particle_particle_fast/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_fast/Project.xcconfig -------------------------------------------------------------------------------- /week7/3_particle_particle_fast/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week7/3_particle_particle_fast/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_fast/config.make -------------------------------------------------------------------------------- /week7/3_particle_particle_fast/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_fast/icon.rc -------------------------------------------------------------------------------- /week7/3_particle_particle_fast/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_fast/src/main.cpp -------------------------------------------------------------------------------- /week7/3_particle_particle_fast/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_fast/src/ofApp.cpp -------------------------------------------------------------------------------- /week7/3_particle_particle_fast/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_fast/src/ofApp.h -------------------------------------------------------------------------------- /week7/3_particle_particle_fast/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_fast/src/particle.cpp -------------------------------------------------------------------------------- /week7/3_particle_particle_fast/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_fast/src/particle.h -------------------------------------------------------------------------------- /week7/3_particle_particle_video/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/Makefile -------------------------------------------------------------------------------- /week7/3_particle_particle_video/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/Project.xcconfig -------------------------------------------------------------------------------- /week7/3_particle_particle_video/addons.make: -------------------------------------------------------------------------------- 1 | ofxOpenCv 2 | -------------------------------------------------------------------------------- /week7/3_particle_particle_video/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/config.make -------------------------------------------------------------------------------- /week7/3_particle_particle_video/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/icon.rc -------------------------------------------------------------------------------- /week7/3_particle_particle_video/src/binner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/src/binner.cpp -------------------------------------------------------------------------------- /week7/3_particle_particle_video/src/binner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/src/binner.h -------------------------------------------------------------------------------- /week7/3_particle_particle_video/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/src/main.cpp -------------------------------------------------------------------------------- /week7/3_particle_particle_video/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/src/ofApp.cpp -------------------------------------------------------------------------------- /week7/3_particle_particle_video/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/src/ofApp.h -------------------------------------------------------------------------------- /week7/3_particle_particle_video/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/src/particle.cpp -------------------------------------------------------------------------------- /week7/3_particle_particle_video/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week7/3_particle_particle_video/src/particle.h -------------------------------------------------------------------------------- /week8/multiForces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/Makefile -------------------------------------------------------------------------------- /week8/multiForces/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/Project.xcconfig -------------------------------------------------------------------------------- /week8/multiForces/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week8/multiForces/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/config.make -------------------------------------------------------------------------------- /week8/multiForces/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/icon.rc -------------------------------------------------------------------------------- /week8/multiForces/multiForces.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/multiForces.cbp -------------------------------------------------------------------------------- /week8/multiForces/multiForces.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/multiForces.sln -------------------------------------------------------------------------------- /week8/multiForces/multiForces.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/multiForces.vcxproj -------------------------------------------------------------------------------- /week8/multiForces/multiForces.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/multiForces.vcxproj.filters -------------------------------------------------------------------------------- /week8/multiForces/multiForces.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/multiForces.vcxproj.user -------------------------------------------------------------------------------- /week8/multiForces/multiForces.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/multiForces.workspace -------------------------------------------------------------------------------- /week8/multiForces/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week8/multiForces/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/src/main.cpp -------------------------------------------------------------------------------- /week8/multiForces/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/src/ofApp.cpp -------------------------------------------------------------------------------- /week8/multiForces/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/src/ofApp.h -------------------------------------------------------------------------------- /week8/multiForces/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/src/particle.cpp -------------------------------------------------------------------------------- /week8/multiForces/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/src/particle.h -------------------------------------------------------------------------------- /week8/multiForces/src/spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/src/spring.cpp -------------------------------------------------------------------------------- /week8/multiForces/src/spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces/src/spring.h -------------------------------------------------------------------------------- /week8/multiForces2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/Makefile -------------------------------------------------------------------------------- /week8/multiForces2/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/Project.xcconfig -------------------------------------------------------------------------------- /week8/multiForces2/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week8/multiForces2/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/config.make -------------------------------------------------------------------------------- /week8/multiForces2/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/icon.rc -------------------------------------------------------------------------------- /week8/multiForces2/multiForces2.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/multiForces2.cbp -------------------------------------------------------------------------------- /week8/multiForces2/multiForces2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/multiForces2.sln -------------------------------------------------------------------------------- /week8/multiForces2/multiForces2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/multiForces2.vcxproj -------------------------------------------------------------------------------- /week8/multiForces2/multiForces2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/multiForces2.vcxproj.filters -------------------------------------------------------------------------------- /week8/multiForces2/multiForces2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/multiForces2.vcxproj.user -------------------------------------------------------------------------------- /week8/multiForces2/multiForces2.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/multiForces2.workspace -------------------------------------------------------------------------------- /week8/multiForces2/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week8/multiForces2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/src/main.cpp -------------------------------------------------------------------------------- /week8/multiForces2/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/src/ofApp.cpp -------------------------------------------------------------------------------- /week8/multiForces2/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/src/ofApp.h -------------------------------------------------------------------------------- /week8/multiForces2/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/src/particle.cpp -------------------------------------------------------------------------------- /week8/multiForces2/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/src/particle.h -------------------------------------------------------------------------------- /week8/multiForces2/src/spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/src/spring.cpp -------------------------------------------------------------------------------- /week8/multiForces2/src/spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/multiForces2/src/spring.h -------------------------------------------------------------------------------- /week8/muscles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/Makefile -------------------------------------------------------------------------------- /week8/muscles/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/Project.xcconfig -------------------------------------------------------------------------------- /week8/muscles/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week8/muscles/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/config.make -------------------------------------------------------------------------------- /week8/muscles/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/icon.rc -------------------------------------------------------------------------------- /week8/muscles/muscles.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/muscles.cbp -------------------------------------------------------------------------------- /week8/muscles/muscles.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/muscles.sln -------------------------------------------------------------------------------- /week8/muscles/muscles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/muscles.vcxproj -------------------------------------------------------------------------------- /week8/muscles/muscles.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/muscles.vcxproj.filters -------------------------------------------------------------------------------- /week8/muscles/muscles.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/muscles.vcxproj.user -------------------------------------------------------------------------------- /week8/muscles/muscles.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/muscles.workspace -------------------------------------------------------------------------------- /week8/muscles/muscles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/muscles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week8/muscles/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week8/muscles/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/src/main.cpp -------------------------------------------------------------------------------- /week8/muscles/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/src/ofApp.cpp -------------------------------------------------------------------------------- /week8/muscles/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/src/ofApp.h -------------------------------------------------------------------------------- /week8/muscles/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/src/particle.cpp -------------------------------------------------------------------------------- /week8/muscles/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/src/particle.h -------------------------------------------------------------------------------- /week8/muscles/src/spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/src/spring.cpp -------------------------------------------------------------------------------- /week8/muscles/src/spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/muscles/src/spring.h -------------------------------------------------------------------------------- /week8/shapes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/Makefile -------------------------------------------------------------------------------- /week8/shapes/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/Project.xcconfig -------------------------------------------------------------------------------- /week8/shapes/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week8/shapes/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/config.make -------------------------------------------------------------------------------- /week8/shapes/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/icon.rc -------------------------------------------------------------------------------- /week8/shapes/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week8/shapes/shapes.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/shapes.cbp -------------------------------------------------------------------------------- /week8/shapes/shapes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/shapes.sln -------------------------------------------------------------------------------- /week8/shapes/shapes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/shapes.vcxproj -------------------------------------------------------------------------------- /week8/shapes/shapes.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/shapes.vcxproj.filters -------------------------------------------------------------------------------- /week8/shapes/shapes.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/shapes.vcxproj.user -------------------------------------------------------------------------------- /week8/shapes/shapes.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/shapes.workspace -------------------------------------------------------------------------------- /week8/shapes/shapes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/shapes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week8/shapes/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/src/main.cpp -------------------------------------------------------------------------------- /week8/shapes/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/src/ofApp.cpp -------------------------------------------------------------------------------- /week8/shapes/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/src/ofApp.h -------------------------------------------------------------------------------- /week8/shapes/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/src/particle.cpp -------------------------------------------------------------------------------- /week8/shapes/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/src/particle.h -------------------------------------------------------------------------------- /week8/shapes/src/spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/src/spring.cpp -------------------------------------------------------------------------------- /week8/shapes/src/spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/shapes/src/spring.h -------------------------------------------------------------------------------- /week8/springs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/Makefile -------------------------------------------------------------------------------- /week8/springs/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/Project.xcconfig -------------------------------------------------------------------------------- /week8/springs/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week8/springs/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/config.make -------------------------------------------------------------------------------- /week8/springs/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/icon.rc -------------------------------------------------------------------------------- /week8/springs/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week8/springs/springs.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/springs.cbp -------------------------------------------------------------------------------- /week8/springs/springs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/springs.sln -------------------------------------------------------------------------------- /week8/springs/springs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/springs.vcxproj -------------------------------------------------------------------------------- /week8/springs/springs.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/springs.vcxproj.filters -------------------------------------------------------------------------------- /week8/springs/springs.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/springs.vcxproj.user -------------------------------------------------------------------------------- /week8/springs/springs.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/springs.workspace -------------------------------------------------------------------------------- /week8/springs/springs.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/springs.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week8/springs/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/src/main.cpp -------------------------------------------------------------------------------- /week8/springs/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/src/ofApp.cpp -------------------------------------------------------------------------------- /week8/springs/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/src/ofApp.h -------------------------------------------------------------------------------- /week8/springs/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/src/particle.cpp -------------------------------------------------------------------------------- /week8/springs/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/src/particle.h -------------------------------------------------------------------------------- /week8/springs/src/spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/src/spring.cpp -------------------------------------------------------------------------------- /week8/springs/src/spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week8/springs/src/spring.h -------------------------------------------------------------------------------- /week9/controlPanel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/Makefile -------------------------------------------------------------------------------- /week9/controlPanel/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/Project.xcconfig -------------------------------------------------------------------------------- /week9/controlPanel/addons.make: -------------------------------------------------------------------------------- 1 | ofxXmlSettings -------------------------------------------------------------------------------- /week9/controlPanel/bin/data/mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/bin/data/mono.ttf -------------------------------------------------------------------------------- /week9/controlPanel/bin/data/mySettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/bin/data/mySettings.xml -------------------------------------------------------------------------------- /week9/controlPanel/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/config.make -------------------------------------------------------------------------------- /week9/controlPanel/controlPanel.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/controlPanel.cbp -------------------------------------------------------------------------------- /week9/controlPanel/controlPanel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/controlPanel.sln -------------------------------------------------------------------------------- /week9/controlPanel/controlPanel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/controlPanel.vcxproj -------------------------------------------------------------------------------- /week9/controlPanel/controlPanel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/controlPanel.vcxproj.filters -------------------------------------------------------------------------------- /week9/controlPanel/controlPanel.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/controlPanel.vcxproj.user -------------------------------------------------------------------------------- /week9/controlPanel/controlPanel.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/controlPanel.workspace -------------------------------------------------------------------------------- /week9/controlPanel/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/icon.rc -------------------------------------------------------------------------------- /week9/controlPanel/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week9/controlPanel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/src/main.cpp -------------------------------------------------------------------------------- /week9/controlPanel/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/src/ofApp.cpp -------------------------------------------------------------------------------- /week9/controlPanel/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/controlPanel/src/ofApp.h -------------------------------------------------------------------------------- /week9/controlPanel/src/ofxControlPanel/src/guiTypeText.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week9/flocking/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/Makefile -------------------------------------------------------------------------------- /week9/flocking/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/Project.xcconfig -------------------------------------------------------------------------------- /week9/flocking/addons.make: -------------------------------------------------------------------------------- 1 | ofxXmlSettings -------------------------------------------------------------------------------- /week9/flocking/bin/data/mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/bin/data/mono.ttf -------------------------------------------------------------------------------- /week9/flocking/bin/data/mySettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/bin/data/mySettings.xml -------------------------------------------------------------------------------- /week9/flocking/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/config.make -------------------------------------------------------------------------------- /week9/flocking/flocking.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/flocking.cbp -------------------------------------------------------------------------------- /week9/flocking/flocking.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/flocking.sln -------------------------------------------------------------------------------- /week9/flocking/flocking.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/flocking.vcxproj -------------------------------------------------------------------------------- /week9/flocking/flocking.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/flocking.vcxproj.filters -------------------------------------------------------------------------------- /week9/flocking/flocking.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/flocking.vcxproj.user -------------------------------------------------------------------------------- /week9/flocking/flocking.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/flocking.workspace -------------------------------------------------------------------------------- /week9/flocking/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/icon.rc -------------------------------------------------------------------------------- /week9/flocking/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week9/flocking/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/src/main.cpp -------------------------------------------------------------------------------- /week9/flocking/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/src/ofApp.cpp -------------------------------------------------------------------------------- /week9/flocking/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/src/ofApp.h -------------------------------------------------------------------------------- /week9/flocking/src/ofxControlPanel/src/guiTypeText.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week9/flocking/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/src/particle.cpp -------------------------------------------------------------------------------- /week9/flocking/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/flocking/src/particle.h -------------------------------------------------------------------------------- /week9/inheritance/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/Makefile -------------------------------------------------------------------------------- /week9/inheritance/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/Project.xcconfig -------------------------------------------------------------------------------- /week9/inheritance/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week9/inheritance/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/config.make -------------------------------------------------------------------------------- /week9/inheritance/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/icon.rc -------------------------------------------------------------------------------- /week9/inheritance/inheritance.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/inheritance.cbp -------------------------------------------------------------------------------- /week9/inheritance/inheritance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/inheritance.sln -------------------------------------------------------------------------------- /week9/inheritance/inheritance.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/inheritance.vcxproj -------------------------------------------------------------------------------- /week9/inheritance/inheritance.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/inheritance.vcxproj.filters -------------------------------------------------------------------------------- /week9/inheritance/inheritance.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/inheritance.vcxproj.user -------------------------------------------------------------------------------- /week9/inheritance/inheritance.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/inheritance.workspace -------------------------------------------------------------------------------- /week9/inheritance/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week9/inheritance/src/circleParticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/circleParticle.cpp -------------------------------------------------------------------------------- /week9/inheritance/src/circleParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/circleParticle.h -------------------------------------------------------------------------------- /week9/inheritance/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/main.cpp -------------------------------------------------------------------------------- /week9/inheritance/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/ofApp.cpp -------------------------------------------------------------------------------- /week9/inheritance/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/ofApp.h -------------------------------------------------------------------------------- /week9/inheritance/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/particle.cpp -------------------------------------------------------------------------------- /week9/inheritance/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/particle.h -------------------------------------------------------------------------------- /week9/inheritance/src/squareParticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/squareParticle.cpp -------------------------------------------------------------------------------- /week9/inheritance/src/squareParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/squareParticle.h -------------------------------------------------------------------------------- /week9/inheritance/src/triangleParticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/triangleParticle.cpp -------------------------------------------------------------------------------- /week9/inheritance/src/triangleParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/inheritance/src/triangleParticle.h -------------------------------------------------------------------------------- /week9/noise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/Makefile -------------------------------------------------------------------------------- /week9/noise/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/Project.xcconfig -------------------------------------------------------------------------------- /week9/noise/bin/data/mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/bin/data/mono.ttf -------------------------------------------------------------------------------- /week9/noise/bin/data/mySettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/bin/data/mySettings.xml -------------------------------------------------------------------------------- /week9/noise/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/config.make -------------------------------------------------------------------------------- /week9/noise/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/icon.rc -------------------------------------------------------------------------------- /week9/noise/noise.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/noise.cbp -------------------------------------------------------------------------------- /week9/noise/noise.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/noise.sln -------------------------------------------------------------------------------- /week9/noise/noise.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/noise.vcxproj -------------------------------------------------------------------------------- /week9/noise/noise.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/noise.vcxproj.filters -------------------------------------------------------------------------------- /week9/noise/noise.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/noise.vcxproj.user -------------------------------------------------------------------------------- /week9/noise/noise.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/noise.workspace -------------------------------------------------------------------------------- /week9/noise/noise.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/noise.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week9/noise/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week9/noise/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/src/main.cpp -------------------------------------------------------------------------------- /week9/noise/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/src/ofApp.cpp -------------------------------------------------------------------------------- /week9/noise/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/src/ofApp.h -------------------------------------------------------------------------------- /week9/noise/src/ofxControlPanel/src/guiColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/src/ofxControlPanel/src/guiColor.cpp -------------------------------------------------------------------------------- /week9/noise/src/ofxControlPanel/src/guiColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/src/ofxControlPanel/src/guiColor.h -------------------------------------------------------------------------------- /week9/noise/src/ofxControlPanel/src/guiTypeText.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week9/noise/src/ofxControlPanel/src/guiValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/src/ofxControlPanel/src/guiValue.cpp -------------------------------------------------------------------------------- /week9/noise/src/ofxControlPanel/src/guiValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/src/ofxControlPanel/src/guiValue.h -------------------------------------------------------------------------------- /week9/noise/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/src/particle.cpp -------------------------------------------------------------------------------- /week9/noise/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noise/src/particle.h -------------------------------------------------------------------------------- /week9/noiseParticles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/Makefile -------------------------------------------------------------------------------- /week9/noiseParticles/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/Project.xcconfig -------------------------------------------------------------------------------- /week9/noiseParticles/bin/data/mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/bin/data/mono.ttf -------------------------------------------------------------------------------- /week9/noiseParticles/bin/data/mySettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/bin/data/mySettings.xml -------------------------------------------------------------------------------- /week9/noiseParticles/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/config.make -------------------------------------------------------------------------------- /week9/noiseParticles/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/icon.rc -------------------------------------------------------------------------------- /week9/noiseParticles/noiseParticles.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/noiseParticles.cbp -------------------------------------------------------------------------------- /week9/noiseParticles/noiseParticles.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/noiseParticles.sln -------------------------------------------------------------------------------- /week9/noiseParticles/noiseParticles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/noiseParticles.vcxproj -------------------------------------------------------------------------------- /week9/noiseParticles/noiseParticles.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/noiseParticles.vcxproj.user -------------------------------------------------------------------------------- /week9/noiseParticles/noiseParticles.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/noiseParticles.workspace -------------------------------------------------------------------------------- /week9/noiseParticles/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week9/noiseParticles/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/src/main.cpp -------------------------------------------------------------------------------- /week9/noiseParticles/src/noiseField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/src/noiseField.cpp -------------------------------------------------------------------------------- /week9/noiseParticles/src/noiseField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/src/noiseField.h -------------------------------------------------------------------------------- /week9/noiseParticles/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/src/ofApp.cpp -------------------------------------------------------------------------------- /week9/noiseParticles/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/src/ofApp.h -------------------------------------------------------------------------------- /week9/noiseParticles/src/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/src/particle.cpp -------------------------------------------------------------------------------- /week9/noiseParticles/src/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/noiseParticles/src/particle.h -------------------------------------------------------------------------------- /week9/scene/.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/.sln -------------------------------------------------------------------------------- /week9/scene/.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/.vcproj -------------------------------------------------------------------------------- /week9/scene/.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/.vcproj.user -------------------------------------------------------------------------------- /week9/scene/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/Makefile -------------------------------------------------------------------------------- /week9/scene/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/Project.xcconfig -------------------------------------------------------------------------------- /week9/scene/bin/data/frog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/bin/data/frog-1.jpg -------------------------------------------------------------------------------- /week9/scene/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/config.make -------------------------------------------------------------------------------- /week9/scene/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/icon.rc -------------------------------------------------------------------------------- /week9/scene/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/openFrameworks-Info.plist -------------------------------------------------------------------------------- /week9/scene/scene.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/scene.cbp -------------------------------------------------------------------------------- /week9/scene/scene.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/scene.sln -------------------------------------------------------------------------------- /week9/scene/scene.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/scene.vcxproj -------------------------------------------------------------------------------- /week9/scene/scene.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/scene.vcxproj.filters -------------------------------------------------------------------------------- /week9/scene/scene.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/scene.vcxproj.user -------------------------------------------------------------------------------- /week9/scene/scene.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/scene.workspace -------------------------------------------------------------------------------- /week9/scene/scene.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/scene.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /week9/scene/src/baseScene.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /week9/scene/src/baseScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/src/baseScene.h -------------------------------------------------------------------------------- /week9/scene/src/circleScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/src/circleScene.cpp -------------------------------------------------------------------------------- /week9/scene/src/circleScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/src/circleScene.h -------------------------------------------------------------------------------- /week9/scene/src/imageScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/src/imageScene.cpp -------------------------------------------------------------------------------- /week9/scene/src/imageScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/src/imageScene.h -------------------------------------------------------------------------------- /week9/scene/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/src/main.cpp -------------------------------------------------------------------------------- /week9/scene/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/src/ofApp.cpp -------------------------------------------------------------------------------- /week9/scene/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/src/ofApp.h -------------------------------------------------------------------------------- /week9/scene/src/squareScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/src/squareScene.cpp -------------------------------------------------------------------------------- /week9/scene/src/squareScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofZach/algo2012/HEAD/week9/scene/src/squareScene.h --------------------------------------------------------------------------------