void setup() {
  // This is where the commands that should run once
  // at the beginning should go
  colorMode(HSB);
  smooth();
}

void draw() {
  // This is where the commands that should run repeatedly
  // should go
  background(255);
  // put your shape command here:
}