show/hide this revision's text 2 edited tags
show/hide this revision's text 1 [made Community Wiki]

Tetris and pretty graphics

Say you're building a Tetris game. As any proper programmer, you have your view logic on one side, and your business logic on the other side; probably a full-on MVC going on.

When the model sends its update(), the view redraws itself, as expected.

But then... if you wanted to add, say, an animation to vanish a line, how would you implement that in the view?

Make any assumptions you want---excepting that "Everything is properly encapsulated".