> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://codigodelaimagen.sketchpad.cc/sp/pad/view/ro.d0IzdYfo9oY/rev.181
 * 
 * authors: 
 *   pequenoestudio
 *   emilio gonzález villegas

 * license (unless otherwise specified): 
 *   creative commons attribution-share alike 3.0 license.
 *   https://creativecommons.org/licenses/by-sa/3.0/ 
 */ 



void setup() {  // inicialización
    background(255);
    size(500, 500); 
    
    // este es el comportamiento por defecto loop();
    
    //noloop();
    
} 

void draw() {  // redibujado   
// mientras se cumpla la condicion (boolean) repite el proceso o código entre llaves

    background(255);
    
    int contador=0;
    int limite=100;

    while(contador<limite){
        
         strokeWeight(random(200));
        stroke(random(255),50,20,20);
        
        ellipse(random(500), random(500),50,50);
        
        contador=contador+1;
}

}