wlof / gameoflife

A simple Python implementation of Conway's Game of Life using the curses library.
MIT License
3 stars 0 forks source link

New visualization mode #13

Closed wlof closed 9 years ago

wlof commented 9 years ago

Right now the view of the cells is pretty basic: all live cells are represented by the same character (*). Cells born in the current generation are drawn in green, others in white.

Here's a more fancy visualization mode:

This requires changes in the game implementations to compute and keep track of these new informations (fates and ages).

wlof commented 9 years ago

Done in 0.4.0.