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.
我正在编写这个方法,所以当调用它时,它会导致一个形状被绘制和移动。绘图部分已经工作了。我只需要移动部分的帮助。
public void moveAndDraw(Graphics window) { draw(window); }
你需要有某种方法来存储对象的位置(也许是java.awt.geom.Point2D)。然后你会在你的动作中翻译那个点。最后展示你在绘画之前调用window.translate(x,y)移动绘图中心的动作
window.translate(x,y)