Rotate Rect

processing, 2D, form, Law of Figure and Ground
Fabian Morón Zirfas
A figure always stands on a ground.
background(0);
size(500, 500);
rectMode(CENTER);
translate(width/2, height/2);
rotate(radians(13));
rect(-width/3, 0, width, height);
saveFrame("out.png");