-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main'
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
# Cubic Life | ||
### Overview | ||
## Overview | ||
Cubic Life is a powerful cellular automaton engine designed to simulate Conway's Game of Life in three dimension. This engine provides a flexible framework for running and visualizing complex cellular automata simulations in a 3D environment. | ||
|
||
<img src="assets/screenshot.gif" alt="image" width="700" height="auto"> | ||
|
||
### Rules | ||
## Rules | ||
+ A live cell that has live neighbors below 5 or above 6 dies. | ||
+ A dead cell that has 4 live neighbors becomes a live cell. | ||
|
||
### Features | ||
## Features | ||
+ **Infinite Grid:** No grid size limitation. | ||
+ **Conway's Game of Life:** CAEngine is specifically designed to run Conway's Game of Life, a classic cellular automaton with simple rules but complex emergent behavior. | ||
+ **3D Simulation:** Unlike traditional implementations which are 2D, CAEngine operates in a three-dimensional space, allowing for more intricate patterns and interactions. | ||
+ **Flexible Architecture:** The engine is built with a modular architecture, making it easy to extend and customize for different cellular automaton rules and behaviors. | ||
+ **Visualization:** CAEngine includes built-in visualization tools to observe the evolution of the cellular automaton in real-time, providing insights into the emergent patterns and dynamics. | ||
+ **Configurability:** Users can adjust various parameters such as initial configurations, and simulation speed to tailor the behavior of the cellular automaton to their specific needs. | ||
+ **Cross-Platform:** CAEngine is designed to be cross-platform, ensuring compatibility with various operating systems. | ||
### Controls | ||
## Controls | ||
| Key | Action | | ||
|------|---------------| | ||
| WASD | Move | | ||
| RMB | Rotate camera | | ||
|
||
### License | ||
## License | ||
This project is licensed under the MIT License. See the LICENSE file for details. | ||
|
||
### Credits | ||
## Credits | ||
Developed by M. Sami Gürpınar |