Tagged Questions
4
votes
9answers
4k views
How do I create collision detections for my bouncing balls?
I have coded an animation (in python) for three beach balls to bounce around a screen. I now wish to have them all collide and be able to bounce off each other. I would really appreciate any help that ...
1
vote
3answers
492 views
How do I reverse the direction that my rectangles travel?
I am very new at programming as it was only just introduced into my school as a subject and I need some help. I have been given the task to have an animation of three balls (rectangle images) bouncing ...
0
votes
1answer
103 views
root.after causes Tkinter application to stop working
def colision(self):
if self.coords(self.bola)[1]<50:
self.boladir=1
if self.coords(self.bola)[1]>870:
self.jugando=0
self.pierde()
# ...