-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
39 lines (32 loc) · 1.38 KB
/
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>
<head>
<meta charset="utf-8">
<title>Halfedge on three.js</title>
<link rel="shortcut icon" href="#">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
</head>
<body style="margin: 0;">
<div id="info"
style="z-index: 1000; position: absolute; top: 0px; width: 100%; padding: 10px; box-sizing: border-box; text-align: center;">
<a href="https://erasta.github.io/three-halfedge-dcel" target="_blank" rel="noopener">three-halfedge-dcel</a><br />
Color the pointed face and its adjacent faces<br />upto the k-th steps distance
</div>
<!-- <script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script> -->
<script type="importmap">
{
"imports": {
"three": "./node_modules/three/build/three.module.js",
"three/addon/": "./node_modules/three/examples/jsm/"
}
}
</script>
<script type="module" src="demo/app.js">
</script>
<a id="button" target="_blank" style="position: fixed; bottom: 16px; right: 16px; padding: 12px; border-radius: 50%; margin-bottom: 0px;
background-color: #FFF; opacity: .9; z-index: 999; box-shadow: 0 0 4px rgb(0 0 0 / 15%); text-decoration: none;"
href="https://github.com/erasta/three-halfedge-dcel/blob/main/demo/app.js" title="View source code on GitHub">
<img src="./files/ic_code_black_24dp.svg" />
</a>
</body>
</html>