-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (28 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Examples</title>
<link type="text/css" rel="stylesheet" href="packages/examples/main.css">
</head>
<body>
<div style="padding: 5px">
<h1>Examples</h1>
<a href="packages/examples/helloWorldComChannelEndpoint.html">ComChannelEndpoint: Hello World</a>
<br>
<a href="packages/examples/helloWorldWorkerTask.html">WorkerTask: Hello World</a>
<br>
<a href="packages/examples/helloWorldWorkerTaskDirector.html">WorkerTaskDirector: Hello World</a>
<br>
<a href="packages/examples/workerCom.html">WorkerTask: Inter-Worker Communication</a>
<br>
<a href="packages/examples/transferables.html">WorkerTaskDirector: Transferables</a>
<br>
<a href="packages/examples/threejs.html">WorkerTaskDirector: Three.js</a>
<br>
<a href="packages/examples/potentially_infinite.html">WorkerTaskDirector: Potentially Infinite Execution</a>
<br>
</div>
</body>
</html>