├── .gitignore ├── PathFollowing_2017 ├── Path.pde ├── PathFollowing_2017.pde ├── Vehicle.pde └── data │ ├── paths.csv │ ├── texture.png │ ├── texture16.png │ └── texture24.png ├── Processing_2017 ├── Circle.pde ├── Processing_2017.pde └── data │ ├── 2017.png │ └── 2017.psd ├── README.md ├── data ├── 2017.png └── 2017.psd ├── font_paths ├── OpenSans-Regular.ttf ├── index.html ├── libraries │ ├── p5.dom.js │ ├── p5.js │ └── p5.sound.js ├── path.js ├── pathhelper.js ├── sketch.js └── vehicle.js ├── index.html └── sketch.js /.gitignore: -------------------------------------------------------------------------------- 1 | output/ 2 | -------------------------------------------------------------------------------- /PathFollowing_2017/Path.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/PathFollowing_2017/Path.pde -------------------------------------------------------------------------------- /PathFollowing_2017/PathFollowing_2017.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/PathFollowing_2017/PathFollowing_2017.pde -------------------------------------------------------------------------------- /PathFollowing_2017/Vehicle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/PathFollowing_2017/Vehicle.pde -------------------------------------------------------------------------------- /PathFollowing_2017/data/paths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/PathFollowing_2017/data/paths.csv -------------------------------------------------------------------------------- /PathFollowing_2017/data/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/PathFollowing_2017/data/texture.png -------------------------------------------------------------------------------- /PathFollowing_2017/data/texture16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/PathFollowing_2017/data/texture16.png -------------------------------------------------------------------------------- /PathFollowing_2017/data/texture24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/PathFollowing_2017/data/texture24.png -------------------------------------------------------------------------------- /Processing_2017/Circle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/Processing_2017/Circle.pde -------------------------------------------------------------------------------- /Processing_2017/Processing_2017.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/Processing_2017/Processing_2017.pde -------------------------------------------------------------------------------- /Processing_2017/data/2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/Processing_2017/data/2017.png -------------------------------------------------------------------------------- /Processing_2017/data/2017.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/Processing_2017/data/2017.psd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/README.md -------------------------------------------------------------------------------- /data/2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/data/2017.png -------------------------------------------------------------------------------- /data/2017.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/data/2017.psd -------------------------------------------------------------------------------- /font_paths/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/font_paths/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /font_paths/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/font_paths/index.html -------------------------------------------------------------------------------- /font_paths/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/font_paths/libraries/p5.dom.js -------------------------------------------------------------------------------- /font_paths/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/font_paths/libraries/p5.js -------------------------------------------------------------------------------- /font_paths/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/font_paths/libraries/p5.sound.js -------------------------------------------------------------------------------- /font_paths/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/font_paths/path.js -------------------------------------------------------------------------------- /font_paths/pathhelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/font_paths/pathhelper.js -------------------------------------------------------------------------------- /font_paths/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/font_paths/sketch.js -------------------------------------------------------------------------------- /font_paths/vehicle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/font_paths/vehicle.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/index.html -------------------------------------------------------------------------------- /sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/2017/HEAD/sketch.js --------------------------------------------------------------------------------