forked from graemeniedermayer/ArExperiments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (51 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AR</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<style type="text/css">
body .dg li.title,
body .dg li:not(.folder),
body .dg.main .close-button {
background-color: rgba(0, 0, 0, 0.5);
}
body {
background: rgba(240,255,255,1);
}
li {
background: rgba(240,255,255,1);
}
a {
color: rgba(0,25,55,1);
}
</style>
</head>
<body>
<h3>Live Examples</h3>
<h4>Physics</h4>
<ul>
<li><a href="html/arMagneticField.html">Magnetic Fields</a></li>
<li><a href="html/magDipole.html">Magnetic Dipole</a></li>
<li><a href="html/arManyBody.html">N-body visualization</a></li>
<li><a href="html/hydrogenAtom.html">Hydrogen Orbitals</a></li>
</ul>
<h4>Core Api</h4>
<ul>
<li><a href="html/ArSkeleton.html"> Skeleton</a></li>
<li><a href="html/arRuler.html"> Augmented Reality Ruler</a></li>
<li><a href="html/depthOcclusion.html"> Threejs occlusion example</a></li>
<li><a href="html/depthCapture.html"> Capturing depth images to file</a></li>
<li><a href="html/depthMesh.html"> Creating a planar mesh with the depth api</a></li>
<li><a href="html/lightEstimation.html">Light Estimation</a></li>
<li><a href="html/arRecord.html">Record Motions to txt file</a></li>
</ul>
<h4>Larger Projects</h4>
<ul>
<li><a href="html/depthPhysics.html"> ammo.js physics engine + depth api</a></li>
<li><a href="html/arRegina.html"> gis example</a></li>
<li><a href="html/arGrainElevator.html">Photogrammetry</a></li>
</ul>
<p> These only work on mobile.</p>
</body>
</html>