> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.zaA8DZfc8RW/rev.992
 * 
 * authors: 
 *   Bruno Goncalves

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



size(500,500)
background(234,190,70);

red
stroke(250,27,27)
line(0,0,250,250);

green
stroke(27,225,69)
line(250,250,500,500);

blue
stroke(27,114,250)
line(500,0,250,250);

blue
stroke(27,114,250)
fill (27,114,250)
ellipse(375,125,50,50)

red
stroke(250,27,27)
fill (250,27,27)
ellipse(125,125,50,50)


green
stroke(27,225,69)
fill (27,225,69)
ellipse(375,375,50,50);


red
stroke(250,27,27)
noFill()
triangle(0,50,200,250,0,250);

green
stroke(27,225,69)
noFill()
triangle(250, 300,450,500,250,500);




fill(27,114,250);
noStroke();
triangle(200, 250,250,300,0,500);

fill(250,27,27);
noStroke();
triangle(200, 252,0,252,0,500);

fill(27,225,69);
noStroke();
triangle(248, 300,248,500,0,500);