-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.8 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
39
40
41
42
43
44
<!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>Octree Visualizer</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/da239c2be7.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="overlay">
<div id="text">
<h1>The Octree Data Structure</h1>
<p>Octree refers to a data structure where every parent node has eight child nodes. Octrees are generated recursively and are often used in 3D graphics. One application is downsampling a pointcloud to yield an accurate representation of 3D space with less points.</p>
<form id="myForm">
<label class="button">
<input type="file" id="csvFile" accept=".csv" />
CSV
</label>
<label class="button">
<input type="submit" id="begin" value="Submit" />
EXPLORE
</label>
</form>
</div>
</div>
<div id="controls">
<button id="lbtn"><i class="fas fa-arrow-left fa-2x"></i></button>
<button id="rbtn"><i class="fas fa-arrow-right fa-2x"></i></button>
<button id="camrot"><i class="fas fa-sync-alt fa-2x"></i></button>
<button id="auto"><i class="fas fa-redo-alt fa-2x"></i></button>
</div>
<script type="importmap">
{
"imports": {
"three": "https://cdn.skypack.dev/[email protected]",
"orbitcontrols": "https://cdn.skypack.dev/[email protected]/examples/jsm/controls/OrbitControls"
}
}
</script>
<script type="module" src="js/app.js"></script>
</body>
</html>