-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>A* Pathfinding Visualization</title>
<link rel="stylesheet" href="./styles/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400&display=swap"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<script src="./objects/MinHeap.js"></script>
<script src="./objects/node.js"></script>
<script src="index.js"></script>
</head>
<body>
<div id="container">
<h1>A* Search Algorithm Visualizer</h1>
</div>
<p>
Visualization of the A-star Pathfinding Algorithm. Made Using p5.js with
Binary Heap Optimization
</p>
<span
><div id="visitedPreview"></div>
Visited Nodes (Closed Set)
</span>
<span
><div id="leftPreview"></div>
Nodes left to visit (Open Set)
</span>
<span
><div id="obsPreview"></div>
Obstacles (Random)
</span>
</body>
</html>