-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel.html
More file actions
69 lines (62 loc) · 2.17 KB
/
model.html
File metadata and controls
69 lines (62 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Model</title>
<link rel="stylesheet" href="stylesheet.css" />
</head>
<body>
<div class="viewer-container">
<a class="home-logo" href="./index.html">
<img src="resources/icons/home-6.svg" />
<span>Home</span>
</a>
<!-- <iframe frameborder="0"> </iframe> -->
<div id="viewer-canvas-container">
</div>
<div hidden id="tree-view">
<div id="tree-view-header">
SPATIAL HIERARCHY
</div>
<ul id="treeViewRoot">
</ul>
</div>
<div hidden id="property-view">
<div id="property-view-header">
PROPERTIES
</div>
<div id="property-view-content">
</div>
</div>
<div id="viewer-toolbox" class="viewer-toolbox">
<button id="tree-pannel" class="tool-button" href="#">
<img src="resources/icons/tree.svg" alt="" />
</button>
<!-- <button class="tool-button" href="#">
<img src="resources/icons/parametres-curseurs.svg" alt="" />
</button> -->
<!-- <button class="tool-button" href="#">
<img src="resources/icons/reglages.svg" alt="" />
</button> -->
<!-- <button class="tool-button" href="#">
<img src="resources/icons/pen-5.svg" alt="" />
</button> -->
<button id="fitToFrame" class="tool-button" href="#">
<img src="resources/icons/video-camera-2.svg" alt="" />
</button>
<button id="measure-tool" class="tool-button" href="#">
<img src="resources/icons/ruler-27.svg" alt="" />
</button>
<button id="section-tool" class="tool-button" >
<img src="resources/icons/sectionCut.svg" alt="" />
</button>
<button id= "props-pannel" class="tool-button" href="#">
<img src="resources/icons/magnifier-10.svg" alt="" />
</button>
</div>
<script src="./dist/model_bundle.js"></script>
</div>
</body>
</html>