In paint(), one will construct applet image in offscreenGraphics as opposed to the argument g of paint(). So one would see statements such as:
|
Finally at end of paint(), one could transfer the double buffered image to g by
|
One would also need to override the update() method by |
public void update(Graphics g) { |
paint(g); |
} |