xxxxxxxxxx
23
let NUM_SAMPLES = 512;
function setup() {
createCanvas(400, 400);
background(220, 20, 120);
}
function draw() {}
function drawGaussian() {
fill(255);
noStroke();
for (let i = 0; i < NUM_SAMPLES; i++) {
let x = randomGaussian(width / 2, width / 6);
let y = randomGaussian(height / 2, height / 6);
ellipse(x, y, 10);
}
}
function mouseClicked() {
drawGaussian();
}