forked from jambis-prg/real-time-pathfinding-simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (21 loc) · 685 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (21 loc) · 685 Bytes
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 lang="en">
<head>
<script src="https://cdn.jsdelivr.net/npm/p5@1.11.13/lib/p5.js"></script>
<script src="https://cdn.jsdelivr.net/npm/p5@1.11.13/lib/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
<main>
</main>
<script src="sketch.js"></script>
<script src="Grid.js"></script>
<script src="PathAlgorithm.js"></script>
<script src="BFS.js"></script>
<script src="DFS.js"></script>
<script src="Dijkstra.js"></script>
<script src="AStar.js"></script>
<script src="Greedy.js"></script>
</body>
</html>