1. What other functions did you notice in previous code examples?
  2. smooth(); - Draws all geometry with smooth (anti-aliased) edges
  3. background(255, 204, 0); - Adds background color
  4. fill(200,0,0); - fills the shape with a color
  5. strokeWeight(5); - Sets the width of the stroke used for lines, points, and the border around shapes
  6. noFill(); - removes the previously set color fill
  7. /*comments*/ - computer doesnt execute this
size(500, 375);
smooth();
fill(0,200,0)
quad(10, 10, 480, 20, 360, 360, 20, 350)
fill(200,0,0)
rect(30, 30, 300, 300)
noFill()
/* remove the fill color */
triangle(100, 100, 200, 100, 200, 160)