##Images of trash items are projected on the wall going down toward the two trash cans (recycling to recycling trash to trash).
The size of the canvas needs to be change according to the projection on the wall.
- ./assets/trash (16 files)
- ./assets/recycle (33 files)
- must be .jpg format
- needs to be 300px wide
- need to be on a white background
- name must match the following number in folder (if last is 33 then number new pic will be 34)
- code needs to be changed to match the number in particle_system file on line 8 to the new amount of pics:
for (var i = 0; i <= 33; i ++) {
this.possible_images.push(loadImage('assets/' + type + '/' + i + '.jpg'));
}
#ToDos
- Make a website that allows uploads of new images in the correct bins.
- Fix the API and have the images pulled from there.
- Rent projector from ER and install in ITP entrance (email Rob - who gave permission already).
- replace bins to ones without cover.
The code for the installation is based on Daniel Shiffman's particle system from The Nature Of Code book using P5.js