Played with a design that looked almost like a house (square and triangle):
Played with rotation https://editor.p5js.org/des8963/sketches/kwr_ZwRE2 and
translate, rotate and scale are common transformations.
translate(x,y) will move what we draw relative to the canvas. Everything that is drawn after the translate will be drawn in a new position.
Note that if you have more than one translate within the draw function, each translate works on top of the changes of the prior translate.