-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (26 loc) · 940 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SoundLocate Viewer</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container"><button onclick=""> </button></div>
<div id="hueBar"></div>
<!--THREE.js stuff-->
<script src="three.min.js"></script>
<script src="orbiControls.js"></script>
<script src="lut.js"></script>
<script src="Projector.js"></script>
<script src="SoftwareRenderer.js"></script>
<!--util stuff-->
<script src="HsvToRgb.js"></script>
<script src="urlParse.js"></script>
<!--my scripts-->
<script src="notMyThree.js"></script>
<script src="myThree.js"></script>
<script src="websocketFunctions.js"></script>
<script src="main.js"></script>
</body>
</html>