Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
1 Posted Topic
#This is the working code I wrote for you from graphics import * win = GraphWin("house.py", 500, 500) win.setCoords(0,0, 4,4) p1 = win.getMouse() x=p1.getX() y=p1.getY() p6=Point(x+0.05,y+0.05) Pt = Oval(p1,p6) Pt.setFill(color_rgb(255,255,0)) Pt.setOutline(color_rgb(255,255,0)) Pt.draw(win) p2 = win.getMouse() x=p2.getX() y=p2.getY() p6=Point(x+0.05,y+0.05) Pt = Oval(p2,p6) Pt.setFill(color_rgb(255,255,0)) Pt.setOutline(color_rgb(255,255,0)) Pt.draw(win) p3 = win.getMouse() x=p3.getX() y=p3.getY() p6=Point(x+0.05,y+0.05) …
The End.
Karsam