xxxxxxxxxx
22
/*
currently this sketch draws white points all over the canvas.
change the values being given to x and y and add a conditional so that
the white points are only drawn inside the black circle.
you will have to use the dist() function.
*/
function setup() {
createCanvas(600, 600);
background(220);
fill(0);
ellipse(width/2, height/2, 300, 300);
}
function draw() {
let x = random(0, width);
let y = random(0, height);
if(dist(x,y,width/2, height/2)<150){
stroke(255);
point(x, y);
}
}