gpt4 book ai didi

python 将度数转换为 x 的变化和 y 的变化

转载 作者:太空宇宙 更新时间:2023-11-04 06:46:32 27 4
gpt4 key购买 nike

我正在使用 pygame 在 python 中制作蛇游戏,为了移动角色,我有一个整数,它是它应该移动的角度度数。有什么办法可以让 x 和 y 的变化根据度数移动它?例如:func(90) # [0, 5]func(0) # [5, 0]

最佳答案

import math

speed = 5
angle = math.radians(90) # Remember to convert to radians!
change = [speed * math.cos(angle), speed * math.sin(angle)]

关于python 将度数转换为 x 的变化和 y 的变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4550315/

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