Hello,
I’m new to processing and my task is to display shapes with randomized colors.
size(700,700)
background('#FF4477')
translate(random(100, 500), 30)
fill('#E3AB62')
noStroke()
ellipse(random(100, 120), random (10, 35), 70,75)
fill('#9FCDE8')
ellipse(random(200,180), random(100,180), 50,50)
fill('#7FD17E')
ellipse(random(100,150), random(500,675), 90,90)
translate(random(300, 100), 80)
fill('#DE8BD4')
ellipse(random(360,450), random(500,100), 30,30)
fill('#FAF488')
ellipse(random(400,320), random(700,600), 65,65)
Instead of filling the shapes with an assigned color, I wanted to randomize them, is there any way how?