> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.Z5Y3KqsBHjk/rev.1480
 * 
 * authors: 
 *   Pedro Malaca

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





void setup() {  
    
size(300, 300); 

background(255);
} 


void draw() {

strokeWeight(10);
point(100,50);
point(50,100);

strokeWeight(5);
line(25,25,150,150);
line(250,50,250,250);


strokeWeight(5);
fill(255,0,0);
triangle(50,250,150,150,250,250);

line(70,250,150,150);
line(100,250,150,150);
line(150,250,150,150);
line(210,250,150,150);

fill(111,255,254);
ellipse(130,80,50,50);


fill(255,255,255);
beginShape();
curveVertex(150,250);
curveVertex(150,250);
curveVertex(90,280);
curveVertex(40,280);
curveVertex(50,250);
endShape(CLOSE);


}