forked from cvdlab/plasm.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 826 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>plasm.js</title>
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header>
<h1 id="plasm-logo">Plasm.js</h1>
</header>
<div id="plasm"></div>
<footer>
<div id="plasm-inspector"></div>
</footer>
<script src="support/three.js"></script>
<script src="support/three-detector.js"></script>
<script src="support/three-frame.js"></script>
<script src="support/three-stats.js"></script>
<script src="support/three-trackball.js"></script>
<script src="support/simplexn.js"></script>
<script src="lib/plasm.js"></script>
<script src="lib/plasm-fun.js"></script>
<script>
p = new Plasm('plasm', 'plasm-inspector');
fun.PLASM(p);
</script>
</body>
</html>