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 代码来旋转固定背景图像上的图像,就像在时钟背景上旋转针图像一样。
手表里有多根针,一根针代表小时,一根针代表分钟。
如何在固定背景上旋转二维图形图像?
首先看看...
你需要一些方法来更新运动。这可以通过使用单个或多个javax.swing.Timer计时器来实现,有关详细信息,请参阅Swing中的并发。
javax.swing.Timer
旋转更有趣,但可以通过使用AffineTransform
AffineTransform
看一眼...