> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.z03o1iEHGC4/rev.426
 * 
 * authors: 
 *   joão Miguel

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




void setup() {  
    
    // tamanho da tela
    size(300, 300); 

    // cor de fundo
    background(255);
} 

void draw() {
        fill(200,200,200);
ellipse(150,150,300,300);
    
    fill(0,0,230);
ellipse(150,150,290,290);


        fill(220);
        noStroke();
rect(105,70,110,30);

rect(100,70,20,150);

rect(200,70,20,120);

ellipse(95,220,50,40);

ellipse(195,190,50,40);

fill(255);




}