I'm trying to make two balls to move on the screen the position is being updated with thread and the main thread is updating the graphics here is my code:
from tkinter import *
from threading import *
import time
width = 500
height = 500
class Ball(Thread):
def __init__(self, canvas, x1, y1, x2, y2, color):
super().__init__()
self.x1 = x1
self.y1 = y1
self.x2 = x2
self.y2 = y2
self.x_velocity = 9
self.y_velocity = 5
self.canvas = canvas
self.id = self.canvas.create_oval(self.x1, self.y1, self.x2, self.y2, fill=color)
def update(self):
self.canvas.move(self.id, self.x_velocity, self.y_velocity)
pos = self.canvas.coords(self.id)
if pos[0] <= 0 or pos[2] >= width:
self.x_velocity *= -1
if pos[1] <= 0 or pos[3] >= height:
self.y_velocity *= -1
def run(self):
self.update()
def main():
master = Tk()
canvas = Canvas(master=master, bg='Grey', width=width, height=height)
ball1 = Ball(canvas=canvas, x1=10, y1=10, x2=40, y2=40, color='Black')
ball2 = Ball(canvas=canvas, x1=50, y1=50, x2=80, y2=80, color='Red')
canvas.pack()
ball1.start()
ball2.start()
while 1:
master.update()
time.sleep(0.04)
if __name__ == '__main__':
main()
it seems that is not working what is wrong and how to handle it ? the error message is:
Exception in thread Thread-2: Traceback (most recent call last): File "/home/muhammad_essam/anaconda3/lib/python3.6/threading.py", line 916, in _bootstrap_inner
self.run() File "/mnt/sda6/CSE/Project/GUI/Learnning/GUI101/main.py", line 30, in run
self.update() File "/mnt/sda6/CSE/Project/GUI/Learnning/GUI101/main.py", line 22, in update
self.canvas.move(self.id, self.x_velocity, self.y_velocity) File "/home/muhammad_essam/anaconda3/lib/python3.6/tkinter/__init__.py", line 2585, in move
self.tk.call((self._w, 'move') + args)
_tkinter.TclError: out of stack space (infinite loop?)
Exception in thread Thread-1: Traceback (most recent call last): File "/home/muhammad_essam/anaconda3/lib/python3.6/threading.py", line 916, in _bootstrap_inner
self.run() File "/mnt/sda6/CSE/Project/GUI/Learnning/GUI101/main.py", line 30, in run
self.update() File "/mnt/sda6/CSE/Project/GUI/Learnning/GUI101/main.py", line 22, in update
self.canvas.move(self.id, self.x_velocity, self.y_velocity) File "/home/muhammad_essam/anaconda3/lib/python3.6/tkinter/__init__.py", line 2585, in move
self.tk.call((self._w, 'move') + args)
_tkinter.TclError: out of stack space (infinite loop?)