-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
56 lines (54 loc) · 1.4 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>BotPrint | A Mixed-Initiative Robot Design Generator</title>
<meta charset="utf-8">
<link href="http://fonts.googleapis.com/css?family=Lobster&subset=cyrillic,latin&text=Rutt-Etra-IzerDropImageHere" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="controls">
<h1>BotPrint</h1>
<p>
TODO: Summary will go here.
</p>
<h3>Cheat Sheet</h3>
<ul>
<li>
Drag a chassis to workplane.
</li>
<li>
Click on it and then drag it to transform it.
</li>
<li>
Mousewheel to scale.
</li>
<li>
'S' key to save model.
</li>
</ul>
<h3>Options</h3>
<div id="controls-container">
</div>
</br>
<div id="fps-container">
<h3>FPS</h3>
</div>
</div>
<div id="container">
<div id="stage">
<div id="overlay">
<h1>Drop a Chassis Here</h1>
</div>
</div>
</div>
<script src="js/Three.js"></script>
<script src="js/Detector.js"></script>
<script src="js/RequestAnimationFrame.js"></script>
<script src="js/Stats.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="js/jquery.mousewheel.min.js"></script>
<script src="js/dat.gui.min.js"></script>
<script src="js/botprint.js"></script>
</body>
</html>