in python from tkinter import * import time tk = Tk() Height = 300 Width = 400 tk.title('COMP3140-01 tkinter Demo') canvas = Canvas(tk, width=Width, height= Height) canvas.pack() ball=canvas.create_oval(0,100,50,50, fill='red') delta_x = 5 delta_y=0 var = StringVar() coord = Label(canvas, textvariable=var, fg='red') labelfont = ('times', 20, 'bold') coord.config(font=labelfont) canvas.create_window(180, 180, window=coord) #Add the coordinate label to the canvas while True: canvas.move(ball, delta_x, delta_y) #draw and move the ball object pos=canvas.coords(ball) #records the coordinates # Move the ball if pos[2] > Width: delta_x=-5 elif pos[0]<=0 : delta_x=5 var.set('( %d, %d )'%(pos[0],pos[1])) #update the coordinates tk.update() #update the whole frame

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

in python

from tkinter import *
import time

tk = Tk()

Height = 300
Width = 400
tk.title('COMP3140-01 tkinter Demo')
canvas = Canvas(tk, width=Width, height= Height)
canvas.pack()

ball=canvas.create_oval(0,100,50,50, fill='red')
delta_x = 5
delta_y=0

var = StringVar()
coord = Label(canvas, textvariable=var, fg='red')
labelfont = ('times', 20, 'bold')
coord.config(font=labelfont)
canvas.create_window(180, 180, window=coord) #Add the coordinate label to the canvas

while True:
canvas.move(ball, delta_x, delta_y) #draw and move the ball object
pos=canvas.coords(ball) #records the coordinates
# Move the ball
if pos[2] > Width:
delta_x=-5
elif pos[0]<=0 :
delta_x=5

var.set('( %d, %d )'%(pos[0],pos[1])) #update the coordinates

tk.update() #update the whole frame
time.sleep(0.03)

1. Modify MovingBall_Demo.py to create the following animation script.
COMP3140-01 Animation Demo
( 0, 95 )
( 350, 255 )
Specifications:
The red ball moves elockwise while the blue ball moves counter clockwise
a)
b)
c)
The red ball moves 2 times as faster as the blue ball moves
At the center of the frame, the coordinates of the balls are shown in real time.
Transcribed Image Text:1. Modify MovingBall_Demo.py to create the following animation script. COMP3140-01 Animation Demo ( 0, 95 ) ( 350, 255 ) Specifications: The red ball moves elockwise while the blue ball moves counter clockwise a) b) c) The red ball moves 2 times as faster as the blue ball moves At the center of the frame, the coordinates of the balls are shown in real time.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY