wisemanstan123 / processing-graphics-assignment-1-smiley-face

0 stars 0 forks source link

processing-graphics-1-smiley-face

Assignment Standard Operating Procedures

In this assignment you will start learning how to create graphical output using Processing.

Your final program should produce an image like this. The colours do not have to be the same as long as you have followed all the instructions and changed the default values for colors. exemplar.png

Step 1

// Set up canvas
void setup() {
  size(700, 500); // Size of canvas
  background(100, 10, 100); // Background color as rgb values
}

void draw() {
  // Your program will be here...

  // Do not forget comments!
}

Step 2

Step 3

Step 4

Step 5

Step 6

Step 7

Step 8