-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·39 lines (35 loc) · 914 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
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="lib/hl-gen.js"></script>
<script src="https://d3js.org/d3.v7.js"></script>
<script src="./lib/three.js"></script>
<script src="lib/reimg.js"></script>
<style>
body {
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
}
canvas {
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding: 0;
margin: auto;
}
</style>
<script type="module" src="./networkShader.js"></script>
</head>
<body>
<canvas id="c"></canvas>
</body>
</html>