xxxxxxxxxx
21
function setup() {
createCanvas(400, 400);
}
function draw() {
let x = width;
let y = height;
let r = width;
// Draw the shape with a gradient effect
drawFeatheredCircle(x, y, r);
}
function drawFeatheredCircle(x, y, r) {
background('#CECDE7')
fill('#E4E5B6');
noStroke();
ellipse(mouseX, mouseY, r);
filter(BLUR, 200);
}