Python中的圈子 - 寻找解释方法的来源

时间:2014-03-01 05:55:27

标签: python geometry

我目前正在通过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个参数,但最后两个是什么:endpointswidth

我也很难找到关于圆方法的一些文档(我只能找到关于椭圆方法的文档)。

任何帮助都将受到高度赞赏。

1 个答案:

答案 0 :(得分:0)

tkinter没有circle方法。它 有一个canvas对象,它有一个draw_oval方法。最有可能的是,这种circle方法是一个包装器。

示例中的width属性可能与轮廓的宽度有关。但是,draw_oval方法没有endpoints的参数,因此它们可能对您调用的circle方法而言是唯一的。您必须查阅该方法的文档或实现,以了解它的用途。