Skip to content

Instantly share code, notes, and snippets.

@claytical
Created January 20, 2016 16:48
Show Gist options
  • Save claytical/da3fd71c3c565f9aca5b to your computer and use it in GitHub Desktop.
Save claytical/da3fd71c3c565f9aca5b to your computer and use it in GitHub Desktop.
Random Lines
var x;
var y;
var r;
var g;
var b;
function setup() {
createCanvas(400,400);
y = 0;
r = random(255);
g = random(255);
b = random(255);
}
function draw() {
background(r%255,g%255,b%255);
r+=1;
g+=1;
b+=1;
strokeWeight(5);
line(width/2, height/2, 0, y);
line(width/2, height/2, width, y);
y++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment