Code

void setup(){
  size(400,400);
  smooth();
}
void loop(){
background(200);
stroke(255);
strokeWeight(1);
fill(0,50);
  point(200,200);
  line(93,195,width,195);
  triangle(150,240,200,205,250,240);
  rect(65,23,7,234);
  quad(273,123,96,24,29,52,89,58);
  ellipse(89,310,301,8);
  curve(90,50,25,35,10,0,10,100);
  bezier(10,350,0,10,50,25,60,90);
}

010 -- Basic Primitives: Primitives not requiring BeginShape/EndShape

Statement:Assignments #01X will be due Tuesday 9/28, except for the "Abstract Clock", which will be due Thursday 9/30.
Create a simple composition which demonstrates your ability to command the following basic drawing primitives: point(), line(), triangle(), ellipse(), rect(), quad(), curve(), bezier(). The composition should have dimensions of 400x400 pixels, and you may use color. Reactivity and/or dynamism are not required; conserve your time.

hide statement