xxxxxxxxxx
28
function setup() {
createCanvas(400, 400);
//background(255,255,255);
for(let i=0; i < height; i++)
{
for(let j=0; j < width; j++)
{
fill(255,255,0);
rect(j,i,1,1);
}
}
fill(255,255,0);
ellipse(width/2,height/2,50,50);
}
function draw() {
}