-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (38 loc) · 1.24 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
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="js/lib/two.js"></script>
<script src="js/lib/three.js"></script>
<script src="js/lib/three-orbit-controls.js"></script>
<script src="js/threeDRepresentation.js"></script>
<script src="js/twoDprojection.js"></script>
<script src="js/allRepresentations.js"></script>
<link rel="stylesheet" href="css/structure.css">
<link rel="stylesheet" href="css/projection.css">
<link rel="stylesheet" href="css/reconstruction.css">
</head>
<body>
<div class="flex-container">
<div class="flex-child">
<div id="projection-xy" class="projection-card">
<span>Projection X-Y (Z constant)</span>
</div>
<div id="projection-xz" class="projection-card">
<span>Projection X-Z (Y constant)</span>
</div>
<div id="projection-yz" class="projection-card">
<span>Projection Y-Z (X constant)</span>
</div>
</div>
<div class="flex-child">
<div id="reconstruction-3D"></div>
<button id="btn-reconstruct-3D">Reconstruction</button>
</div>
</div>
<script>
var all = new AllRepresentations('projection');
</script>
</body>
</html>