Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Java 7 创建一个自上而下的射击游戏。我想在 JFrame 面板上使用鼠标坐标旋转图像。有人告诉我,使用 Vector2D 类是完成这项任务的最佳方式。播放器图像为 40x40,面板为 1000x800。非常感谢任何和所有帮助。
我会尝试这个来获得鼠标的角度:
float angle = (float) (Math.toDegrees(Math.atan2(player.y - mouse.y, player.x - mouse.x)));