-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 1.09 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="solarsystem.css">
<!--
We use TWGL (Tiny WebGL) to hide the clutter.
-->
<script type="text/javascript" src="./extern/twgl-full.min.js"></script>
<script type="text/javascript" src="./extern/m4.js"></script>
<script type="text/javascript" src="./extern/flattened-primitives.js"></script>
<!-- <script src="https://webgl2fundamentals.org/webgl/resources/twgl-full.min.js"></script>
<script src="https://webgl2fundamentals.org/webgl/resources/m4.js"></script>
<script src="https://webgl2fundamentals.org/webgl/resources/flattened-primitives.js"></script> -->
<script type="text/javascript" src="./extern/dat.gui.min.js"></script>
</head>
<body>
<canvas id="canvas"></canvas>
<div id="uiContainer">
<div id="ui">
<div id="cameraAngle"></div>
</div>
</div>
</body>
<script src="basicUtils.js"></script>
<script src="cameraMovement.js"></script>
<script src="solarsystem.js"></script>
</html>