-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (33 loc) · 1.06 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Emergent Taxis</title>
<link rel="stylesheet" href="./style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.7.6/dat.gui.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/Chart.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-colorschemes"></script>
</head>
<body>
<h1>Emergent Taxis Visualization</h1>
<!-- partial:index.partial.html -->
<canvas id="field">
<p>Sorry, you need a browser that supports HTML5 canvas.</p>
</canvas>
<!-- partial -->
<center>
<button onclick="reset()">reset</button>
<button onclick="startPause()">start / freeze</button>
<button onclick="downloadData()">download data</button>
</center>
<div id="chart-container">
<canvas id="plot">
<p>Sorry, you need a browser that supports HTML5 canvas.</p>
</canvas>
</div>
<!--
<button onClick="radiusExperiments()">start radiusExperiments()</button>
-->
<script src="./script.js"></script>
</body>
</html>