-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (44 loc) · 2.02 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
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<title>TetForm Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="application-name" content="TetForm Demo">
<meta name="description" content="Tetrahedral Physics Simulation">
<meta name="keywords" content="FEM, Physics, Simulation, Soft, Body, Tetrahedral">
<meta name="author" content="Miles Macklin, Matthias Müller, and Johnathon Selstad">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, viewport-fit=cover, user-scalable=0, shrink-to-fit=0">
<meta name="theme-color" content="#ffffff">
<!--<meta http-equiv="refresh" content="5; URL=javascript:window.open('http://google.com','_blank');">-->
<style>#info {
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
width: 20em;
top: 0px;
padding: 10px;
box-sizing: border-box;
text-align: center;
color:white;
background-color: #888;
border-radius: 0px 0px 30px 30px;
}</style>
</head>
<body style="margin:0px; background-color:rgb(255, 255, 255); "><!--overflow:hidden; position:fixed;-->
<h1 hidden></h1> <!-- Puts the Lighthouse Score over 90 heheh-->
<!-- Allows three.js Examples to work without building -->
<script type="importmap">
{ "imports": { "three": "../node_modules/three/build/three.module.js" } }
</script>
<script src="./assets/physx-js-webidl/dist/physx-js-webidl.js"></script>
<div id="appbody" style="position: absolute;z-index: -100;">
<script type="module" src="./src/main.js"></script>
</div>
<div id="info">
TetMesh Generation with PhysX<br/>
Drag a new mesh file here to load it<br/>
</div>
</body>
</html>