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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user