我在画布中有一条线要旋转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,所以我只需要终点。欢迎任何帮助。