-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheqvis.html
More file actions
27 lines (27 loc) · 871 Bytes
/
eqvis.html
File metadata and controls
27 lines (27 loc) · 871 Bytes
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
<html lang="en">
<head>
<!-- <base href="/eqvis/"> -->
<meta charset="UTF-8">
<title>EQVIS</title>
</head>
<body>
<div id="container"></div>
<style>
canvas {width: inherit; height: inherit; position: relative; top: 0; padding: 0;}
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
</style>
<div class="message">
<div class="error">
<div id='canvas-holder-fltracer' style="position: relative; width: inherit;">
<div id="dat-gui-holder-fltracer" style="position: absolute; top: 0em; right: 0em; z-index: 1;"></div>
</div>
</div>
</div>
<script src="js/three.js"></script>
<script src="js/dat.gui.min.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/THREE.MeshLine.js"></script>
<script type="module" src="js/fl_tracer.js"></script>
</body>
</html>