Graphics2D and AffineTransform Questions

Completely irrelevant to this thread. :stuck_out_tongue: ;D

Actually it does answer your question: “happy?” ;D ;D

Haha, let’s stop this… xD

Frame + Canvas + BufferStrategy then :wink:

Remember, Frame doesn’t have the convenient “setDefaultCloseOperation(…)” method, so you will have to manually exit the JVM when the window closes:


frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent we) {
        System.exit(0);
    }
});