I’ve been learning Processing for about a month and have a new idea and am not quite sure how to approach. What would your approach be? Like what do I need to look up and learn to write something where I draw a shape using random() to generate coordinates or size and then draw a subsequent shape related to those random numbers and so on…
So for a tangible example, let’s say I draw a rectangle:
int randwidth = int(random(0,100));
int randheight = int(random(0100));
rect(0,0, randwidth, randheight);
Now I want to draw another rectangle of a new random height and random width that starts at the bottom right corner of the previous rectangle, I suppose I could write this:
rect(randwidth, randheight, newrandwidth, newrandheight);
But let’s say I want to do this 7 times (or 100 times) and end up with 7 rectangles each of different random heights and widths, each starting at the bottom right corner of the previous rectangle. How would I do this cleanly without many lines of code?