-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
35 lines (32 loc) · 753 Bytes
/
main.html
File metadata and controls
35 lines (32 loc) · 753 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
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<title>McGill Physics Hackathon 2017</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 {
text-align:center;
margin: 10px;
color: #ffffff;
background-color: #888888;
}
#viewport {
width: 800px; height: 600px;
float: left;
}
#ui {
float: right;
}
</style>
</head>
<body>
<div id="container"></div>
<script src="libs/three.js"></script>
<script src="libs/OrbitControls.js"></script>
<script src='libs/dat.gui.min.js'></script>
<script src="ui.js"></script>
<script src="sim.js"></script>
<script src="main.js"></script>
</body>
</html>