Most appropriate sub-area of p5.js?
p5.js version
1.8.0
Web browser and version
Chrome
Operating System
Windows11
Steps to reproduce this
Steps:
- createCanvas(600, 600); background(255); noStroke(); fill(0); translate(300, 300); circle(0, 0, 300);
- and then, apply filter(BLUR, 5);
- become looks strange.
Snippet:
function setup() {
createCanvas(600, 600);
background(255);
noStroke();
fill(0);
translate(300, 300);
circle(0, 0, 300);
filter(BLUR, 5);
}
2D_BLUR_BUG
version 1.7.0

version 1.8.0
