We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I tried some particle animations, as I realized with fright, that my processing uses a java version lower than 1.8 . I didn't found any settings, where the used jre is defined. (the java version in the processing directory is 1.8, but appreantly, it isn't used)
Thanks in advance, cpt. Complex
Answers
https://GitHub.com/processing/processing/issues/4484
Thank you, gues I will write the forEach myself. :)
Supposing particles refers to a container for datatype Particle, you can replace
particles.forEach(p -> p.draw());
w/for (Particle p : particles) p.draw();
. ~O)