2018-07-07 15:47:21 +00:00
|
|
|
<h1>Cellular Automata - The Rules of Life</h1>
|
|
|
|
<div id="rules-input">
|
|
|
|
Ruleset: <input type="text" title="ruleset" content="S23/B3">
|
|
|
|
</div>
|
|
|
|
<div id="output">
|
|
|
|
<canvas #caCanvas width="500" height="500"></canvas>
|
|
|
|
</div>
|
|
|
|
<div id="controls">
|
2018-07-07 15:47:37 +00:00
|
|
|
<button id="run" (click)="onStartClicked()">{{buttonRunText}}</button>
|
2018-07-07 15:47:21 +00:00
|
|
|
<button id="step">Step</button>
|
|
|
|
<button id="reset">Reset</button>
|
|
|
|
<button id="random">Random</button>
|
|
|
|
Speed: <input type="text" title="speed" value="1">
|
|
|
|
</div>
|