xxxxxxxxxx
14
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
pixelDensity(1);
fill("red");
ellipse(100, 100, 50);
pixelDensity(2); // try commenting this line out
fill("green");
ellipse(300, 100, 50);
}