/* * twothousandnine * (cc) 2009 Douglas Edric Stanley * Creative Commons BY-SA 3.0 * http://creativecommons.org/licenses/by-sa/3.0/ */ import geomerative.*; Shape greeting; int bg = 255; void setup() { size(1024,200); smooth(); frameRate(60); greeting = new Shape(this); } void draw() { background(bg); greeting.draw(); }