-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrgb.html
More file actions
29 lines (29 loc) · 1.09 KB
/
rgb.html
File metadata and controls
29 lines (29 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cellular</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<script type="text/javascript" src="rgb.js"></script>
</head>
<body>
<div class="topbuttons">
<input type="button" value="Start" onClick="start();" /><input type="button" value="Stop" onClick="stop();" /><input type="button" value="One" onClick="onestep();" />
</div>
<div id="canv"></div>
<div class="footerbuttons">
<div id="mp1">Mutations <input type="text" id="mutatepercent" value="5" oninput="syncParams()" /> %</div>
<div id="mp2">Gens <input type="text" id="mutategen" value="1" oninput="syncParams()" /></div>
<input type="button" value="Recreate" onClick="recreate();" />
</div>
<div id="console-log0"></div>
<div id="console-log1"></div>
<div id="console-log2"></div>
<div id="console-log3"></div>
<div id="canv2"></div>
<script>
init();
</script>
<div><br /><b><a href="https://github.com/xcontcom/neuroparticles">https://github.com/xcontcom/neuroparticles</a></b></div>
</body>
</html>