posted 24 years ago
Hi there,
This question confuses me ...
The way to accumulate drawn objects on the screen is to:
a) Call update() from within repaint()
b) Call update() from within paint()
c) Call accumulate() from within paint()
d) Call paint() from within update()
What is meant by "accumulate"? I'm guessing it's just a synonym for paint (to avoid being too obvious), in which case I'd guess "d" because update() _does_ call paint() (which in turn paints objects to the screen). Sound reasonable?
Thanks!
Greg