i need to reacreate this asap
1 Like
The bottom row has 6 circles. Each row up has 3 more circles.
For the bottom row, divide your canvas evenly (for 6 circles) in the horizontal direction and draw 6 circles.
For the next row up, divide your canvas evenly (for 9 circles) in the horizontal direction and draw 9 circles.
Etc.
3 Likes
Yes, nicely spotted
It’s one for loop in the second for loop
- The outer for loop is for the y position and goes backwards (up),
- the inner for loop is for the x position (this for loop has new parameters every time).
2 Likes
Nested for() loops will be helpful:
:)