xxxxxxxxxx
int x = 0;
int y = 0;
//int [] colour = [
float angle = radians(0);
void setup(){
size (1500, 1500);
background (0);
translate (width/2, height/2);
for (int i = 0; i < 172; i++){
rotate(angle);
stroke(random (255), random (255), random (255));
int z = int (random( height/2));
line (x, y, x + z, y + z);
angle = angle + radians(1);
}
}
void draw (){
}