-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1013 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
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<title>COMP5411 Solar System - Jinseok & Hong Joon</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
background-color : #111;
color: #000;
font-family:Monospace;
font-size:13px;
font-weight: bold;
overflow : hidden;
}
#stats {
}
</style>
</head>
<body>
<div id="main_display">
</div>
<script src="lib/three_new.min.js"></script>
<script src="lib/TrackballControls.js"></script>
<script src="lib/Detector.js"></script>
<script src="lib/underscore-min.js"></script>
<script src="lib/dat.gui.min.js"></script>
<script src="gui.js"></script>
<script src="materials.js"></script>
<script src="CelestialBody.js"></script>
<script src="SolarSystem.js"></script>
<script src="helper_util.js"></script>
<script src="main.js"></script>
</body>
</html>