Can someone explain why there are trails for the ellipse?

https://p5js.org/examples/structure-create-graphics.html

2 Likes

Hello,

I am someone!
https://p5js.org/learn/color.html
https://p5js.org/reference/#/p5/fill

fill(gray, [alpha])

:)

2 Likes

Why does the alpha channel of something drawn behind the ellipse create the trail?

Because each time fill() is invoked it is only applying 0.047% opacity over what was previously drawn. draw() runs aprox 60 times per second …

3 Likes

Of course. Thanks! Now I have to include more characters or it won’t let me post.

2 Likes

just in case you are unfamiliar, this is a great resource for beginners …

3 Likes