-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarching.html
32 lines (29 loc) · 1.07 KB
/
marching.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>test metaball</title>
<meta charset="utf-8">
<style>
input[type="range"] {width: 20em}
body {margin: 0}
</style>
<script src="../../xyz/jsdeps/three117sjpt.js"></script>
<script src="../../xyz/jsdeps/stats.min.js"></script>
<script src="../../xyz/jsdeps/TrackballControls.js"></script>
<script src="marching.js"></script>
<script src="marchtest.js"></script>
<script src="../TextureMaterial/col.js"></script>
<script src="../TextureMaterial/texture.fs.js" type="module"></script>
<script src="testdata.js"></script>
<!-- these are used in private tests -->
<script src="../jsopen/gldebug.js"></script>
<script src="../js/readWebGlFloat.js"></script>
<script src="../js/perftest.js"></script>
<script src="JS/fileWrappers.js"></script>
<script src="../js/fileAndCatalog.js"></script>
<script src="../js/utils.js"></script>
</head>
<body style="overflow: hidden;">
<!-- main body provided by marchtest.js -->
</body>
</html>