Most appropriate sub-area of p5.js?
p5.js version
2.2.3
Web browser and version
All
Operating system
All
Steps to reproduce this
Steps:
- Create a p5.Graphics
- Draw something to it
- Apply a filter
- Draw something else
- Apply another filter
Snippet:
function setup() {
createCanvas(200, 200)
const g = createGraphics(200, 200)
g.noStroke()
g.fill('red')
g.circle(20, 20, 20)
g.filter(BLUR, 2)
g.circle(80, 80, 20)
image(g, 0, 0)
}
On 1.x:
On 2.x:
Live: https://editor.p5js.org/davepagurek/sketches/Wn0aVF-RE
Most appropriate sub-area of p5.js?
p5.js version
2.2.3
Web browser and version
All
Operating system
All
Steps to reproduce this
Steps:
Snippet:
On 1.x:
On 2.x:
Live: https://editor.p5js.org/davepagurek/sketches/Wn0aVF-RE