Galax (Randomizer)

 

det här programmet renderar ett random mönster av prickar (galaxen)

 

int totalPts = 300;
float steps = totalPts + 1;
  
void setup() {
  size(640, 360);
  stroke(255);
  frameRate(1);
} 

void draw() {
  background(0);
  float rand = 0;
  for  (int i = 1; i < steps; i++) {
    point( (width/steps) * i, (height/2) + random(-rand, rand) );
    rand += random(-5, 5);
  }
}

 

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s