Exercise 20

Making a starry night


void setup() {
  size(600,400);
  background(0);
  noStroke();
}

void draw() {
  //background(0);
  fill(0, 10);
  rect(0, 0, width, height);
  
  fill(255);
  ellipse(random(width), random(height), 2, 2);
}

Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *