移动一个物体一定数量的像素? - Python / Pygame

时间:2013-09-28 19:40:01

标签: python coordinates pygame move

假设我有一个物体,我已经存储了它的x位置,y位置和它所面对的角度(从0到359)。例如,如果它行进10个像素,我将如何找出它所处的x和y位置?

我需要这个,因为我正在制作Pong游戏而且我不确定如何让球移动。我知道它会涉及三角学,但这就是我所拥有的。

基本上,我将如何完成此功能:

def move_object(start_x, start_y, direction, pixels_to_move):
    #Return the x and y coordinates of where the object should move to

1 个答案:

答案 0 :(得分:3)

A lesson in 3 seconds

Thereare30charactersinmyanswerbtwletmepost。