> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://a3.sketchpad.cc/sp/pad/view/ro.EXa2MAm$k3R/rev.56
 * 
 * authors: 
 *   Drew Chappel

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



// Pressing Control-R will render this sketch.

PFont bob;
String s = "boogers are not healthy food";

void setup() { 
  size(400,400);
  bob = loadFont("Calibri-12.vlw");
  rectMode(CENTER);
  
} 

void draw() {   
  background(150,20,20);
  textFont(bob);
  fill(255);
  
  textAlign(RIGHT);
  text("hey my name is bob", 60, 200);
  rect(50,250,50,50);
  
  text(s,200,20,100,40);
  ellipse(200, 60, 30, 30);
}