-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.28 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
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Unstructured Lumigraph Renderer</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<script src="app.js" type="module"></script>
<div id="load-wrap">
<h1>Loading...</h1>
</div>
<div id="controls">
<div id="desc">
<p id="ctrl-desc" class="hidden">
Right click and drag to pan
<br />
Left click and drag to rotate
<br />
Scroll wheel for zoom
<br />
C toggles camera helpers
<br />
M rotates through drawing modes
<br />
</p>
<label>
Show controls
<input type="checkbox" id="show-controls" />
</label>
<a
href="https://github.com/hypothete/unstructured-lumigraph"
target="_blank"
>Source code on Github</a
>
</div>
<ul>
<li>Datasets:</li>
<li><a href="?dataset=cube">Cube</a></li>
<li><a href="?dataset=kettle">Kettle</a></li>
<li><a href="?dataset=statue">Statue</a></li>
<li><a href="?dataset=tv">TV</a></li>
</ul>
</div>
</body>
</html>