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