wip optimizing render

This commit is contained in:
Gator
2022-12-19 16:00:38 +01:00
parent 61846b88a5
commit cc4a7b08b3
7 changed files with 119 additions and 86 deletions

View File

@ -77,6 +77,19 @@ const presetRuleset = [
"000": 1,
},
},
{
name: "unknown rule 2",
rules: {
100: 1,
101: 0,
110: 1,
111: 0,
"011": 0,
"010": 0,
"001": 0,
"000": 1,
},
},
];
const initialStates = [
@ -122,6 +135,11 @@ const preset2dRules = [
description:
"Variation on Conway's Game of Life where a cell live if the six neighbor cells are alive",
},
{
id: "serviette",
name: "Serviette variation",
description: "bla",
},
];
export { presetRuleset, initialStates, preset2dRules };