有人可以在公式中帮助我使绘图对象以圆周运动移动吗?我试图从互联网上获取公式,但它仍无效。
ball.set(x_position_ball / 2 - 25
, y_position_ball - 400
, x_position_ball / 2 + 25
, y_position_ball - 350);
black.setColor(Color.BLACK);
canvas.drawOval(ball, black);
int angle = 5;
int radius = 10;
int center_x = 300, center_y
谢谢。