Cellular automaton

Day 5,620, 04:37 Published in North Korea Serbia by An Jung geun

Hi,

Do you know how to do a cellular automaton with more than 3 dimensions ?

(I am searching on Google and I don't understand it/find a step by step method for it so if you can help me write it in comments please or send pictures/links that can help with it.)

Here an exemple of what can do a 2D cellular automaton in Conway's Game of Life :



(Source : Wikipedia)

With "simples" rules :

At each step in time, the following transitions occur:

1. Any live cell with fewer than two live neighbours dies, as if by underpopulation.
2. Any live cell with two or three live neighbours lives on to the next generation.
3. Any live cell with more than three live neighbours dies, as if by overpopulation.
4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

(Source : Wikipedia)

And initial configuration at the first step in time.

Have a good day.

An Jung geun