09/03/01 15:02:32 .net
int Length = 10000;
float[] X = new float[Length];
float[] Y = new float[Length];
float[] Z = new float[Length];
void setup(){
size(400, 400, P3D);
colorMode(HSB, 100);
background(0);
stroke(100);
frameRate(30);
for(int i=0 ; i < Length ; i++){
X[i] = random(width);
Y[i] = random(height);
Z[i] = i * -1;
}
}