我目前正在通过Pac Man计划教授自己的Python。
在此程序中,使用TKinter
圈子方法绘制吃豆人:
screen point = (300, 240)
PACMAN_SCALE = 0.5
self.gridSize = 30
fillColor = yellow ## This is actually reflected in RGB values
outlineColor = yellow ##This is actually reflected in RGB values
endpoints = (0,0)
width = 2
circle(screen_point, PACMAN_SCALE * self.gridSize, fillColor = fillColor, outlineColor = outlineColor, endpoints = endpoints, width = width)
我理解circle方法的前4个参数,但最后两个是什么:endpoints
和width
?
我也很难找到关于圆方法的一些文档(我只能找到关于椭圆方法的文档)。
任何帮助都将受到高度赞赏。
答案 0 :(得分:0)
tkinter没有circle
方法。它 有一个canvas对象,它有一个draw_oval
方法。最有可能的是,这种circle
方法是一个包装器。
示例中的width
属性可能与轮廓的宽度有关。但是,draw_oval
方法没有endpoints
的参数,因此它们可能对您调用的circle
方法而言是唯一的。您必须查阅该方法的文档或实现,以了解它的用途。