1. Before you start drawing, you need to decide on the size of your drawing sheet
  2. Thats done using size(WidthX, HeightY);
  3. Both WidthX, HeightY are in pixels
  4. For example: size(500, 375); opens a window with height 375px and height 500px
  5. Try it