-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (34 loc) · 1.37 KB
/
Copy pathindex.html
File metadata and controls
41 lines (34 loc) · 1.37 KB
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
<!doctype html>
<html lang="en">
<head>
<title>Webvis</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
</head>
<body>
<canvas id="canvas" width="128" height="128"></canvas>
</body>
<div>
<span>X</span> <input type="range" min="0" max="360" value="0" id="rotateX" step="1">
<span>Y</span> <input type="range" min="0" max="360" value="0" id="rotateY" step="1">
<span>Z</span> <input type="range" min="0" max="360" value="0" id="rotateZ" step="1">
<button id="fullscreen">Fullscreen</button>
<button id="switch-vis">Switch vis</button>
</div>
<script src="gl-matrix.js"></script>
<script src="input.js" ></script>
<script src="plugin.js" ></script>
<script src="plugin-registry.js" ></script>
<script src="plugins/sphere.js" ></script>
<script src="plugins/sphere-2.js" ></script>
<script src="plugins/debug.js" ></script>
<script src="plugins/landscape.js" ></script>
<script src="plugins/debug-levels.js" ></script>
<script src="plugins/particles.js" ></script>
<script src="plugins/matrix.js" ></script>
<script src="plugins/shell.js" ></script>
<script src="plugins/spirals.js" ></script>
<script src="plugins/horse.js" ></script>
<script src="stage.js" ></script>
<script src="main.js" ></script>
</html>