xxxxxxxxxx
16
// http://natureofcode.com/book/introduction/
function setup() {
createCanvas(400, 400);
background(0,0,0);
}
function draw() {
fill(randomGaussian,200,210,50);
noStroke();
let x = randomGaussian(width/2, width/8);
let y = randomGaussian(height/2, height/8);
ellipse(x,y,15,15);
}