/* built with Studio Sketchpad: * https://sketchpad.cc * * observe the evolution of this sketch: * https://dflab.sketchpad.cc/sp/pad/view/ro.hEfqe7JgIFf/rev.33 * * authors: * Pedro Soares * license (unless otherwise specified): * creative commons attribution-share alike 3.0 license. * https://creativecommons.org/licenses/by-sa/3.0/ */ // Este valor pode ser alterado, que a composição mantem-se. size (600,500); noStroke (); fill (0,255,255); rect (0, 0, width/6, height); fill (0,255,0); rect (width/6, 0, width/6, height); fill (255,255,0); rect (width/6*2, 0, width/6, height); fill (20,20,255); rect (width/6*3, 0, width/6, height); fill (255,0,255); rect (width/6*4, 0, width/6, height); fill (255,0,0); rect (width/6*5, 0, width/6, height); fill (0,255,255); rect (width/6*6, 0, width/6, height); fill (125,0,125); rect (0, height/4*3, width/2, height/4); fill (125,125,0); rect (width/2, height/4*3, width/2, height/4); fill (255); ellipse (width/2, height/4*3, width/5, width/5); fill (125); triangle (width/5*2, height/4*3, width/2, height/4*3, width/2, height/4*3+width/5/2); triangle (width/2, height/4*3, width/5*3, height/4*3, width/2, height/4*3-width/5/2); fill (0); triangle (width/2, height/4*3, width/5*2, height/4*3, width/2, height/4*3-width/5/2); triangle (width/2, height/4*3, width/5*3, height/4*3, width/2, height/4*3+width/5/2);