-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (28 loc) · 926 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>clusters</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p id ="bg-text">press space to pause
<br>click and drag to add dots
<br>press r to reset simulation
<br>press s to show settings
<br>press g to show graph (doesn't work right now)
<br>press e,o,y,n,b,p to select color (red orange yellow green blue purple)
<br>press a for random colors</p>
<div id="settings" style="display:none;"></div>
<canvas id="graph"style="display:none;"></canvas>
<canvas id="canvas"></canvas>
<script src="settings.js"></script>
<script src="matrix.js"></script>
<script src="functions.js"></script>
<script src="dot.js"></script>
<script src="simulation.js"></script>
<script src="graph.js"></script>
<script src="script.js"></script>
</body>
</html>