-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (109 loc) · 3.67 KB
/
Copy pathindex.html
File metadata and controls
126 lines (109 loc) · 3.67 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html >
<head>
<title>3D Pipe Sketching</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/pipe_style.css">
<!--[if IE 9]> <script src="js-lib/typedarray.js"></script> <![endif]-->
<script src="js-lib/ieShims.js"></script>
<script src="js-lib/FileSaver.js"></script>
<script src="js-lib/three.js"></script>
<script src="js-lib/OrbitControls.js"></script>
<script src="js/pipeData.js"></script>
<script src="js/pipeGeometry.js"></script>
<script src="js/pipeCalc.js"></script>
<script src="js/pipe.js"></script>
<script src="js/index.js"></script>
<script src="js-lib/xlsx.core.min.js"></script>
<script src="js-addons/VF_FF3_importer.js"></script>
</head>
<body>
<div id="piping"></div>
<div id="mode-box">
<div class="mode-button circle-button" id="view-mode">V</div>
<div class="mode-button circle-button" id="create-mode">C</div>
<div class="mode-button circle-button" id="draw-mode">D</div>
<div class="mode-button circle-button" id="select-mode">S</div>
</div>
<div id="file-box">
<div id="save-file">Download Model</div>
<div ><label>Load File:<input type="file" id="load-file"></label></div>
</div>
<div id="selected-objects">
<div>
<h3>Nodes</h3>
<table id="selected-nodes"></table>
</div>
<div>
<h3>Segments</h3>
<table id="selected-pipes"></table>
</div>
</div>
<div id="bottom-right">
<select id="unit-selector">
<option value="m">meters</option>
<option value="fi">feet and inches</option>
</select>
<select id="camera-style">
<option value="o">orthographic</option>
<option value="p">perspective</option>
</select>
<button id="reset-view">Reset View</button>
<select id="show-helpers">
<option value="all">All Helpers</option>
<option value="none">No Helpers</option>
<option value="no-box">No Box</option>
</select>
</div>
<div id="menu-box">
<div id="position-box" class="menu-group">
<p>Position</p>
<div class="y-box">
<span class="activator"></span>
<input type="text" id="y-pos">
<label for="y-pos">ELEVATION</label>
</div>
<div class="x-box">
<span class="activator"></span>
<input type="text" id="x-pos">
<label for="x-pos">NORTH</label>
</div>
<div class="z-box">
<span class="activator"></span>
<input type="text" id="z-pos">
<label for="z-pos">EAST</label>
</div>
</div>
<div id="delta-box" class="menu-group">
<p>Delta</p>
<div class="y-box">
<span class="activator"></span>
<input type="text" id="y-delta">
<label for="y-delta">ELEVATION</label>
</div>
<div class="x-box">
<span class="activator"></span>
<input type="text" id="x-delta">
<label for="x-delta">NORTH</label>
</div>
<div class="z-box">
<span class="activator"></span>
<input type="text" id="z-delta">
<label for="z-delta">EAST</label>
</div>
<div class="l-box">
<span class="activator"></span>
<input type="text" id="l-delta">
<label for="l-delta">LENGTH</label>
</div>
<div class="d1-box">
<input type="text" id="diameter">
<label for="diam1">DIAMETER</label>
</div>
</div>
</div>
<div id="left-menu">
</div>
</body>
</html>