> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.QLzlWDJPh11/rev.3
 * 
 * authors: 
 *   Inês Almeida

 * 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); 
}
 
void draw() {
    background(45, 0, 100);
    
 
noStroke();
smooth();
fill(255, 215, 0);
triangle(30, 15, 24, 60, 108, 45);
smooth();
fill(255, 215, 0);
triangle(300, 160, 0, 60, 130, 190);
smooth();
fill(0);
triangle(18, 235, 219, 300, 220, 0);
smooth();
fill(255, 215, 0);
triangle(320, 150, 298, 45, 294, 24);
smooth();
fill(255, 215, 0);
triangle(240, 60, 300, 290, 60, 294);
smooth();
fill(0);
triangle(250, 18, 0, 210, 15, 90);
smooth();
fill(0);
triangle(210, 240, 122, 45, 288, 24);
}