-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
23 lines (21 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Volatility Surface</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="./node_modules/three/build/three.min.js"></script>
<script type="text/javascript" src="./node_modules/three/examples/js/controls/TrackballControls.js"></script>
<script type="text/javascript" src="./node_modules/dat.gui/build/dat.gui.min.js"></script>
<script type="text/javascript" src="./node_modules/papaparse/papaparse.min.js"></script>
<script src="./node_modules/tinycolor2/dist/tinycolor-min.js"></script>
<script src="./node_modules/tinygradient/browser.js"></script>
</head>
<body>
<div id="info">Volatility Surface <br/> Add file to view surface </div>
<div id="raytrace"></div>
<div id="hyobyun">Volatility Surface by Hyo Byun <a href="https://hyobyun.com/">https://hyobyun.com</a></div>
<script src="./volsurface.js"></script>
</body>
<input id="csvInput" type="file" style="visibility:hidden" multiple="false" onchange="fileImport(this.files)"/>
</html>