//////playing around with shapes ////Setup, size and modes size(500, 200); smooth(); ////Draw, shapes and colors background ( 230, 230, 230 ); textSize (27); fill ( 0, 0, 0 ); text ( "howdy world", 25, 25); //rectangles fill ( 0, 0, 255 ); strokeWeight (5); rect ( 50,50, 90,60); // //lines fill ( 0, 0, 0 ); strokeWeight (1); line ( 190, 190, 199, 199); line ( 50, 50, 25, 25);