-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
61 lines (58 loc) · 2.67 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
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<title>WebGPU Volume Raycaster</title>
</head>
<body>
<div class="container mt-4">
<div class="row">
<div class="col-12 text-center">
<h4>WebGPU Volume Raycaster</h4>
<canvas id="webgpu-canvas" class="img-fluid" width="1280" height="720"></canvas>
<div class="col-12 alert alert-danger" id="no-webgpu" style="display:none;">
<h4>Error: Your browser does not support WebGPU</h4>
</div>
</div>
<div class="mx-auto col-12 col-lg-8 row">
<div class="col-12 mb-2">
<h4>Scene Selection</h4>
</div>
<div class="col-12 col-sm-6 mb-sm-0 mb-2">
Volume: <select id="volumeList"></select>
</div>
<div class="col-12 col-sm-6 mb-2">
Colormap: <select id="colormapList"></select>
</div>
<div class="col-12 mt-lg-2 mt-0">
<p id="loadingText"></p>
<div class="progress mb-2">
<div id="loadingProgressBar" class="progress-bar" role="progressbar"
aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="mx-auto col-12 col-lg-8 row">
<div class="col-12 mt-lg-2 mt-0">
<h4>Controls</h4>
<p>Desktop: Left-click + drag to rotate, scroll to zoom,
right-click + drag to pan.
<br/>
Touch: One finger drag to rotate, pinch to zoom, two finger drag to pan.
<p id="loadingText"></p>
<h4>Description</h4>
This is a WebGPU implementation of a standard <a href="https://en.wikipedia.org/wiki/Volume_ray_casting">volume raycaster</a>
which uses a single render-pass to raycast the volume.
<a href="https://github.com/Twinklebear/webgpu-volume-raycaster">
Get the code on GitHub!</a>
</div>
</div>
</div>
</div>
</body>
</html>