/* Jeremy Owen Turner# 200024742. Assignment A1-08 - Program your pattern from Assignment 1-07 using while().*/ void setup() { stroke(1); strokeWeight(6); background(25); } void draw () {int x = 3; while (x > 2) x = x-1 ; line(x,x+3,x+6,x+9); line(x+12,x+15,x+18,x+21); line(x+24,x+27,x+30,x+33); line(x+36,x+39,x+42,x+45); line(x+48,x+51,x+54,x+57); line(x+60,x+63,x+66,x+69); } /*As you can see, I am gradually getting better at this with each exercise...phew! I have decided not to improve my earlier exercises with these freshly learned techniques as I wanted to you show my learning process*/