-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4.9.py
30 lines (23 loc) · 799 Bytes
/
4.9.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from graphics import *
from math import *
def main():
# draw the graphics window
win = GraphWin("window", 600,600)
win.setCoords(-10,-10,10,10)
# gather mouse clicks from the user
corner1 = win.getMouse()
corner2 = win.getMouse()
# draw the rectangle
rec = Rectangle(corner1, corner2)
rec.draw(win)
# close the program after the last click
win.getMouse()
win.close()
# calculate the perimeter and area of the rectangle
length = abs(corner1.getX() - corner2.getX())
width = abs(corner1.getY() - corner2.getY())
area = length * width
perimeter = 2 * (length + width)
# print the x value of the points of intersection
print("The area is: ",area,"The perimeter is: ", perimeter)
main()