gpt4 book ai didi

python - 在 Tkinter Canvas 中旋转线

转载 作者:行者123 更新时间:2023-11-30 23:11:54 30 4
gpt4 key购买 nike

我在 Canvas 上有一条线,我想将其旋转x度,同时将起点保持在 Canvas 的中间,我想知道计算终点坐标的公式是什么?,类似的东西

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,因为 Canvas 的大小为 500x500,所以我只需要终点。欢迎任何帮助。

最佳答案

三角学的非常简单的应用。

angle_in_radians = angle_in_degrees * math.pi / 180
line_length = 100
center_x = 250
center_y = 250
end_x = center_x + line_length * math.cos(angle_in_radians)
end_y = center_y + line_length * math.sin(angle_in_radians)

关于python - 在 Tkinter Canvas 中旋转线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29989792/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com