Exercise 08


// white lines on black background
// the lines begin on the top border and end on the bottom border
// the lines must be vertical.

void draw() {
  background(0);
  stroke(255);
  
  float distance_left = random(100);
  
  line(distance_left,0, distance_left,99);
}

Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *