-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarchtestlocal.html
31 lines (28 loc) · 1.21 KB
/
marchtestlocal.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>test metaball</title>
<meta charset="utf-8">
<style>
input[type="range"] {width: 20em}
</style>
<!-- <script src="https://rawgit.com/mrdoob/three.js/dev/build/three.js"></script> -->
<!-- <script src="three150.js"></script> -->
<!-- Patch to use module version of three from older non-module code
Will update to proper modules at some point, but hat impacts other local projects so deferring -->
<script type="module">
import * as THREE from './three168.module.js';
window.THREE = Object.assign({}, THREE)
</script>
<script defer src="TrackballControls.js"></script>
<script defer src="https://rawgit.com/mrdoob/stats.js/master/build/stats.js"></script>
<script defer src="marching.js"></script>
<script defer src="marchtest.js"></script>
<script defer src="testdata.js"></script>
<script defer src="../TextureMaterial/col.js"></script>
<script defer src="../TextureMaterial/TextureMaterial.js" type="module"></script>
</head>
<body style="overflow: hidden;">
<!-- main body provided by marchtest.js -->
</body>
</html>