-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 941 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
<!DOCTYPE html>
<html>
<head>
<title>Ant Colony Demo</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
</head>
<body>
<h1>Ant Colony Demo</h1>
<div>
<canvas id="antColonyCanvas" width="800" height="560" style="border:1px solid #000000"></canvas>
</div>
<script src="Scripts/Vector.js"></script>
<script src="Scripts/Steerer.js"></script>
<script src="Scripts/Function.js"></script>
<script src="Scripts/Pheromone.js"></script>
<script src="Scripts/PheromoneManager.js"></script>
<script src="Scripts/Entity.js"></script>
<script src="Scripts/Food.js"></script>
<script src="Scripts/FoodManager.js"></script>
<script src="Scripts/AntHill.js"></script>
<script src="Scripts/Ant.js"></script>
<script src="Scripts/Sim.js"></script>
</body>
</html>