-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.12 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quad Tree</title>
<link rel="stylesheet" href="style.css">
<script src="index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.min.js"></script>
<script src="quadtree.js"></script>
<link rel="icon" href="data:,">
</head>
<body>
<h1 id="title">Quad Tree
<a id="wiki-quadtree" href="https://en.wikipedia.org/wiki/Quadtree">#Description</a>
</h1>
<button id="clear">Clear</button>
<div id="dropdown" class="dropdown">Select
<button id="dropbtn" class="dropbtn"></button>
<div id="dropdown-content" class="dropdown-content"></div>
</div>
<input id="brush" type="range" min="1" max="10">Size</input>
<input id="tree-capacity" type="range" min="1" max="50">
<span id="tree-capacity-value">Capacity</span>
</input>
<div id="sketch-holder"></div>
<a href="https://github.com/AbstractKamen/QuadTree">git-hub</a>
</body>
</html>