void setup() {
size(500, 500);
background(64);
noStroke();
}
void draw() {
float size = random (25, 100);
float x = random(width);
float y = random(height);
for (float ring = size; ring >= 0; ring -= random(2, 10)) {
fill(random(256), random(256), random(256));
ellipse(x, y, ring, ring);
}
}
This code uses a for
loop to create circles out of randomly colored rings. Every frame, a random size and location is generated, and then the for
loop goes from size
to 0
, decreasing by a random value between 2
and 10
. In other words, the loop starts at the outer-most ring, then decreases in size randomly until it’s too small to see. This causes the circles to be drawn with randomly colored, randomly sized rings.
Many for
loops simply start at 0
and increase by 1
each loop iteration, but this example shows that you aren’t limited to those values. You can start your loop at any value, stop at any value, and increase or decrease by any value. Just make sure your loop will eventually end!
saveFrame()
function to save a screenshot of your sketch. Use that image as your new background!fill()
function to come up with cool-looking color combinations.for
loop to create a radial gradient. Instead of randomly coloring the rings, make them fade to opaque.This example uses a for loop to create cool-looking circles.
Happy Coding is a community of folks just like you learning about coding.
Do you have a comment or question? Post it here!
Comments are powered by the Happy Coding forum. This page has a corresponding forum post, and replies to that post show up as comments here. Click the button above to go to the forum to post a comment!