void setup(){ size(300,300); frameRate(30); } void draw(){ background(255,0,0); for(int i=0; i<100; i++){ float posX = random(width); float posY = random(height); float tamano = random (100); ellipse(posX,posY,tamano,tamano); } }