forked from damianmoore/part-mill
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
38 lines (31 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<div id="viewer" class="viewer" style="width: 100%; height: 750px;">
<div id="dragBox">
<div id="dropMsg">
Drop file here
</div>
</div>
<div id="topDiv"></div></div>
<div id="toolbox"></div>
<script src="js/libs/lightgl.js"></script>
<script src="js/libs/csg.js"></script>
<script src="js/libs/jquery.js"></script>
<script src="js/libs/jquery.hammer.js"></script>
<script src="js/csg-additions.js"></script>
<script src="js/openjscad.js"></script>
<script src="js/parse-stl.js"></script>
<script src="js/file-drop.js"></script>
<script src="js/shapes/monkey.js"></script>
<script src="js/strategies/strategy.js"></script>
<script src="js/strategies/slice.js"></script>
<script src="js/strategies/surface.js"></script>
<script src="js/strategies/progressive-surface.js"></script>
<script src="js/app.js"></script>
<script src="js/bundle.js"></script>
</body>
</html>