在Tkinter Canvas中旋转线条

时间:2015-05-01 15:26:21

标签: python canvas tkinter line

我在画布中有一条线要旋转en x度,同时保持canvs中间的起点,我想知道找出终点坐标的公式是什么?

之类的东西
degrees=xnumberofdegrees
lineEndPoint=degrees*someformulaforxandy
canvas = Canvas(root, width=500, height=500, bg="white")
canvas.pack()
rotatedline=space.create_line(250,250,lineEndPoint)    

起点应始终为250,250,因为画布的大小为500x500,所以我只需要终点。欢迎任何帮助。

0 个答案:

没有答案