-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 732 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (27 loc) · 732 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>STL Viewer</title>
<link rel="stylesheet" href="css/style.css">
<script src="./scripts/stl_viewer/stl_viewer.js"></script>
<script src="./scripts/MultiStlViewer.js"></script>
</head>
<body onload="loadMultiStlViewer([
// Customize here STL files list
'Artery.stl',
'Closure.stl',
'Embolization.stl',
'Kidneys.stl',
'Liver.stl',
'Tumor.stl',
'Vein.stl'
])">
<div class="dashboard">
<div id="stl_cont"></div>
</div>
<div class="sidebar">
<ul id="files_list"></ul>
</div>
<div id="loader" style="display:none"></div>
</body>
</html>