> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.f9D5dXdiW9y/rev.847
 * 
 * authors: 
 *   Carmen Esteves

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



// as instruções que estiverem dentro desta função setup() 
// correm uma vez quando o programa arranca

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

    // cor de fundo
    background(#660066);
} 

void draw() {
    
    fill(#000033)
    noStroke();
    rect(30, 100, 230, 120);
    
    fill(#666699)    
    rect(110, 60, 90, 40);
    
    fill(#ffff66) 
    rect(120, 70, 70, 20);
    
    fill(#000000)    
    ellipse(155, 160, 130, 130);
    
    fill(#ccccff)    
    ellipse(155, 160, 110, 110);

    fill(#333333) 
    ellipse(155, 160, 80, 80);
    
    fill(#999999)     
    ellipse(155, 160, 75, 75);
    
    fill(#cccccc)    
    ellipse(155, 160, 70, 70);
    
    fill(#999999)    
    ellipse(155, 160, 40, 40);
    
    fill(#333333)
    rect(140, 150, 29, 20);
    
    fill(#9999ff)
    rect(40, 110, 40, 10);
    
    fill(#9999ff)
    rect(35, 95, 50, 5);



}