xxxxxxxxxx
/*-----------------------------
Crazy Rainbow Lines
colored lines fray out from 4 corners into 4 blocks
Created 1-26-17
Renee Cheng
cheng.835
Modified 1-30-17
project URL
-----------------------------*/
//things that happen once
//don't put variables in here!
void setup(){
size(1000,1000);
background(255);
};
//this part runs continuously
//put variables in here
void draw(){
int centerX = 500;
int centerY = 500;
stroke(random(255),0,0);
line(centerX-450, centerY-450, (random(500)),(random(500)));
stroke(0,random(255),0);
line(centerX+450, centerY-450, (random(500,1000)),(random(500)));
stroke(0,0,random(255));
line(centerX-450, centerY+450, (random(500)),(random(500,1000)));
stroke(0,0,random(255));
line(centerX-450, centerY+450, (random(500)),(random(500,1000)));
stroke(random(255),random(255),random(255));
line(centerX+450, centerY+450, (random(500,1000)),(random(500,1000)));
}