Increase default grid and rename simple scene

Raise default Conway's Game of Life grid size from 40x40 to 50x50 (src/app/pages/algorithms/conway-gol/conway-gol.models.ts) to provide a larger initial viewport. Update i18n labels for the simple scene to 'Glider'/'Gleiter' in English and German respectively (src/assets/i18n/en.json, src/assets/i18n/de.json) for clearer naming.
This commit is contained in:
2026-02-06 22:06:02 +01:00
parent 5d48118add
commit 2a808c1d96
3 changed files with 4 additions and 4 deletions

View File

@@ -12,8 +12,8 @@ export enum Scenario {
GUN = 4
}
export const DEFAULT_GRID_ROWS = 40;
export const DEFAULT_GRID_COLS = 40;
export const DEFAULT_GRID_ROWS = 50;
export const DEFAULT_GRID_COLS = 50;
export const MIN_GRID_SIZE = 20;
export const MAX_GRID_SIZE = 100;