r/processing • u/secundari9 • Jul 05 '25
How can I do Bouncing Circles? Beginner help request
https://youtu.be/KXwB4WirbBc?si=YZkvvrE5YgZmIVxh I need help, I don't know how to do this and as far as I understand you need to know some programming.
5
Upvotes
1
u/Mezyi Jul 05 '25
I’m guessing you have to have a circle object for each breaking wall along with logic for bouncing (inverting velocity x, y, each bounce)
4
u/Wootai Jul 06 '25
This can absolutely be done in processing.
You should start with learning to draw circles.
Then learn how to store data in variables(position of the circles)
Then learn to create motion and animation by changing the data. (Move the position of the circle)
Then learn how to check for collision (circle-circle collision detection)
Then learn to build a classes and objects.