-
Notifications
You must be signed in to change notification settings - Fork 0
/
architecture.html
42 lines (34 loc) · 1.77 KB
/
architecture.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
<!doctype HTML>
<html>
<head>
<title>Architecture</title>
<meta name="viewport" content="width=device-width, user-scalable=yes, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="https://img.icons8.com/external-glyph-on-circles-amoghdesign/344/external-abc-education-vol-02-glyph-on-circles-amoghdesign.png" type="image/x-icon">
<meta charset="utf-8">
</head>
<script src="./Assets/Scripts/scene.js"></script>
<script src="./Assets/Scripts/augmented.js"></script>
<body style='margin : 0px; overflow: hidden;'>
<a-scene embedded arjs="detectionMode: mono_and_matrix; matrixCodeType: 3x3;">
<a-assets>
<a-asset-item id="bridgeA" src="./Assets/Models/architecture/bridgeA/scene.gltf"></a-asset-item>
<a-asset-item id="bridgeB" src="./Assets/Models/architecture/bridgeB/scene.gltf"></a-asset-item>
<a-asset-item id="bridgeC" src="./Assets/Models/architecture/bridgeC/scene.gltf"></a-asset-item>
<a-asset-item id="bridgeD" src="./Assets/Models/architecture/bridgeD/scene.gltf"></a-asset-item>
</a-assets>
<a-marker type='barcode' value='0'>
<a-entity position="0 0 0" scale="0.02 0.02 0.02" rotation="0 0 0" gltf-model="#bridgeA"></a-entity>
</a-marker>
<a-marker type='barcode' value='1'>
<a-entity position="0 0 0" scale="0.02 0.02 0.02" rotation="0 0 0" gltf-model="#bridgeB"></a-entity>
</a-marker>
<a-marker type='barcode' value='2'>
<a-entity position="0 0 0" scale="1 1 1" rotation="0 0 0" gltf-model="#bridgeC"></a-entity>
</a-marker>
<a-marker type='barcode' value='3'>
<a-entity position="0 0 0" scale="1 1 1" rotation="0 0 0" gltf-model="#bridgeD"></a-entity>
</a-marker>
<a-entity camera></a-entity>
</a-scene>
</body>
</html>