-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Boid Simulation</title>
<!-- Google Fonts -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic"
/>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<div id="container">
<div id="controls">
<h4>Boids!</h4>
<div id="range-container">
<div id="seperation" class="range"><p>Seperation</p></div>
<div id="alignment" class="range"><p>Alignment</p></div>
<div id="cohesion" class="range"><p>Cohesion</p></div>
</div>
</div>
<div id="canvas-container"></div>
</div>
<script src="boid.js"></script>
<script src="kdtree.js"></script>
<script src="flock.js"></script>
<script src="obstacle.js"></script>
<script src="p5.min.js"></script>
<script src="simulation.js"></script>
</body>
</html>