//Drawing demo //Author: Vincent Castillo //Default size = 100x100, changing size size(1000, 1000); //Coloring and making shapes fill(255, 0, 0); rect(500, 500, 25, 25); fill(0, 255, 0); ellipse( 250, 250, 25, 25);