forked from RolandR/VolumeRayCasting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (44 loc) · 998 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Volume Ray Casting</title>
<style>
body{
font-family: sans-serif;
}
h1{
font-size: 25px;
font-weight: 300;
}
a{
display: block;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
#larger{
font-size: 20px;
}
#image{
height: 400px;
}
</style>
</head>
<body>
<h1>Adventures in Volume Ray Casting</h1>
<a href="./webgl2"><img id="image" src="preview.png" alt="Volume Rendering"></a>
<br>
<br>
<a href="./singleRayDemo">Single Ray</a>
<a href="./planeDemo">2D Plane</h2>
<a href="./cpu">3D Volume Rendering on CPU</a>
<a href="./maxValue">Same, but with maximum intensity projection</a>
<a href="./volumeGenerator">Tool for generating 3D volumes</a>
<br>
<a id="larger" href="./webgl2">3D Volume Ray Tracing in WebGL 2.0</a>
<br>
<a href="https://github.com/RolandR/VolumeRayCasting">Code on GitHub</a>
</body>
</html>