forked from garyhodgson/3D-Printroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·107 lines (86 loc) · 2.56 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>3D Printroom</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/favicon.ico" type="image/x-icon" />
<link href="css/bootstrap/bootstrap.css" rel="stylesheet">
<link href="css/layout-default-latest.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id="container">
<div class="ui-layout-west" id="folders-container">
<div class="ui-layout-center">
<div id="sourcedircontainer">
<table id="sourcefilelist" class="table table-condensed sortable">
<thead>
<tr>
<th> </th>
<th>Name</th>
<th>Size</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class="ui-layout-south">
<table id="derivativefilelist" class="table table-condensed sortable">
<thead>
<tr>
<th> </th>
<th>Name</th>
<th>Size</th>
<th>Created</th>
<th>Modified</th>
<th>Bottom Solid Layers</th>
<th>Extrusion Multiplier</th>
<th>Filament Diameter</th>
<th>Fill Density</th>
<th>First Layer Extrusion Width</th>
<th>Infill Extrusion Width</th>
<th>Infill Speed</th>
<th>Layer Height</th>
<th>Nozzle Diameter</th>
<th>Perimeter Speed</th>
<th>Perimeters</th>
<th>Perimeters Extrusion Width</th>
<th>Scale</th>
<th>Top Solid Layers</th>
<th>Travel Speed</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class="ui-layout-center" id="views-container">
<div class="ui-layout-center">
<div id="sourceviewer"></div>
</div>
<div class="ui-layout-south">
<div id="gcodeviewer"></div>
</div>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/jquery.layout.js"></script>
<script src="js/sorttable.js"></script>
<script src="js/modernizr.js"></script>
<script src="js/sugar.js"></script>
<script src="js/Three_55.js"></script>
<script src="js/gcodeviewer/Three.OrbitControls.js"></script>
<script src="js/gcodeviewer/Three.TrackballControls.js"></script>
<script src="js/thingiview/Three.js"></script>
<script src="js/thingiview/plane.js"></script>
<script src="js/thingiview/thingiview.js"></script>
<script src="js/gcodeviewer/gcode-parser.js"></script>
<script src="js/gcodeviewer/gcode-model.js"></script>
<script src="main.js"></script>
</body>
</html>