Current Pattern: glider (Press SPACE to cycle patterns) Cell Shape: square (Press S to switch between round and square cells)

This is my first Website

it is running on my own Pi

About the Game of Life

The Game of Life simulation running on a grid with toroidal (wrapping) logic, rendered using HTML5 Canvas for better performance. The visual area is fixed but the simulation wraps around the edges.

Use the mouse wheel while hovering over the black area to zoom in and out (centered on cursor). Click and drag to pan the view.

Controls

• Mouse wheel: Zoom in/out (centered on cursor)

• Left click + drag: Pan the view

• Right click: Place current pattern

• Right click + drag: Spam place current pattern

• SPACE key: Cycle through available patterns

Rules

1. Any live cell with fewer than two live neighbors dies.

2. Any live cell with two or three live neighbors lives on.

3. Any live cell with more than three live neighbors dies.

4. Any dead cell with exactly three live neighbors becomes a live cell.