#
HTML5 Asteroids
Doug McInnes recreated the classic arcade game Asteroids using canvas:
The Canvas element is super cool. Basically all of the sprites in the game are simple paths defined by an array of points. These points are translated, rotated and scaled based on their state at any given point in the game using the standard Canvas transformations.
(Submitted by Richard Bradshaw)