xxxxxxxxxx
28
/*
This template is for the project element of the Software Studies Module.
You are required to create your own project that included the following elements:
For this assessment you must create a create a simple draw program based on the content you have covered in class. You are encouraged to be as creative as you wish but you should include at least the following technical elements in your code:
1. Variables with different data types,such as integer, string & Boolean
2. If statements
3. For loops
4. Shapes
5. Event handlers (keypress, mouse or similar)
6. Frame rate
7. Canvas size
Do not include your name we use anonymous marking.
*/
function setup() {
createCanvas(100, 100);
}
function draw() {
background(100);
}