> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.Ys3bCvOJLL6/rev.2
 * 
 * authors: 
 *   Liliana Dantas

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



//up side down spades symbol

size(300, 300);

background(255);

noStroke();
fill(0);
ellipse(100, 200, 100, 100);

ellipse(200, 200, 100, 100);

triangle(50, 200, 250, 200, 150, 50);

stroke(0);
strokeWeight(33);
strokeJoin(MITER);
beginShape();
vertex(75, 175);
vertex(150, 50);
vertex(224, 175);
endShape();

noStroke();
triangle(150, 200, 130, 275, 170, 275);