random processing

Solutions on MaxInterview for random processing by the best coders in the world

showing results for - "random processing"
Celia
27 Jan 2018
1for (int i = 0; i < 100; i++) {
2  float r = random(0,50); //Low, High
3  line(50, i, 50+r, i);
4}