> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.Js2RSeUOJYW/rev.1315
 * 
 * authors: 
 *   Madalena Reis

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



void setup() {
    size( 400, 400);
    background (255);
    noLoop();
    smooth();
    
}

void draw() {
    
    
    
    noStroke();
    fill(5, 199, 170, 170);
    triangle (40, 360, 200, 80, 360, 360);
    
    fill(128, 0, 64);
    ellipse (200, 50, 15, 15);
    
    
    fill(248, 80, 168, 225);
    triangle(200, 360, 120, 220, 280, 220);
    
    triangle (200, 152, 180, 114, 220, 114);
    
    fill(128, 0, 64, 175);
    triangle (200, 220, 140, 152, 260, 152);
    
    triangle (120, 360, 82, 300, 158, 300);
    triangle (280, 360, 318, 300, 242, 300);
    
    triangle ( 155, 212, 140, 190, 170, 190);
    triangle (245, 212, 260, 190,  230, 190);
    
    fill(128, 0, 64);
    ellipse (200, 50, 15, 15);
    
    
    stroke();
    noFill();
    triangle (120, 232, 92, 290, 148, 290);
    triangle (280, 232, 308, 290, 252, 290);
    
    fill(50);
    ellipse (200, 50, 20, 20);
    
    noFill();
    stroke(50);
    ellipse (200, 50, 40, 40);
    
      line (50, 300, 150, 130);
    line (350, 300, 250, 130);
    line ( 80, 380, 320, 380);
    
    line (55, 260, 120, 150);
    line (345, 260, 280, 150);
    
       fill(128, 0, 64, 100);
    ellipse (200, 50, 10, 10);



}