forked from santanche/mlca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
27 lines (26 loc) · 984 Bytes
/
home.html
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
<html>
<style>
canvas {
position:absolute;
left:10px;
top:10px;
}
</style>
<title> MLCA Canvas Prototype </title>
<head>
<script type="text/javascript" src="mlca_protointerface.js"></script>
<script type="text/javascript" src="mlca_Condition.js"></script>
<script type="text/javascript" src="mlca_Kernel.js"></script>
<script type="text/javascript" src="mlca_LayerDataStructure.js"></script>
<script type="text/javascript" src="mlca_Layer.js"></script>
<script type="text/javascript" src="mlca_Rule.js"></script>
<script type="text/javascript" src="mlca_Ruleset.js"></script>
<script type="text/javascript" src="mlca_WorstMatrix.js"></script>
<script type="text/javascript" src="mlca_automaton.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body onLoad = "init()">
<canvas id="canvas" width="500" height="500"></canvas>
<button id="iterate" onclick="mlca.automaton.iterate()">Iterate!</button>
</body>
</html>