-
Notifications
You must be signed in to change notification settings - Fork 0
/
ARindex6.html
34 lines (34 loc) · 1.37 KB
/
ARindex6.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
<html>
<head>
<meta charset="utf-8">
<script src="https://aframe.io/releases/1.4.0/aframe.min.js"></script>
<script src="https://raw.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar.js"></script>
<script src="laba6.js"></script>
</head>
<body>
<a-scene embedded arjs='trackingMethod: best;'>
<a-marker type="pattern" url="assets/pattern-letterX.patt" id="X" registerevents>
<a-sphere radius="0.15" color="blue"></a-sphere>
<a-entity id="lineXY"></a-entity>
</a-marker>
<a-marker type="pattern" url="assets/pattern-letterY.patt" id="Y" registerevents>
<a-sphere radius="0.15" color="blue"></a-sphere>
<a-entity id="lineYZ"></a-entity>
</a-marker>
<a-marker type="pattern" url="assets/pattern-letterZ.patt" id="Z" registerevents>
<a-sphere radius="0.15" color="blue"></a-sphere>
<a-entity id="lineZX"></a-entity>
</a-marker>
<a-marker type="pattern" url="assets/pattern-letterW.patt" id="W" registerevents>
<a-sphere radius="0.15" color="blue"></a-sphere>
<a-entity id="lineWY"></a-entity>
</a-marker>
<a-marker type="pattern" url="assets/pattern-letterV.patt" id="V" registerevents>
<a-sphere radius="0.15" color="blue"></a-sphere>
<a-entity id="lineVX"></a-entity>
</a-marker>
<a-entity run></a-entity>
<a-camera-static></a-camera-static>
</a-scene>
</body>
</html>