-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
41 lines (39 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' href='style/style.css'>
<!-- <link rel='stylesheet' href='https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/css/bootstrap.css'> -->
<script src='https://maps.googleapis.com/maps/api/js'></script>
</head>
<body>
<div id='container'>
</div>
<div id='panel'>
<h2>Commands</h2>
<div id='instructions'>
Object manipulation
<ul>
<li>Q - toggle world / object coordinates</li>
<li>W - translate gizmo</li>
<li>E - rotate gizmo</li>
<li>R - scale gizmo</li>
<li>T - center object on pivot</li>
<li>Y - snap object to mesh</li>
</ul>
Camera manipulation
<ul>
<li>Left mouse - rotate</li>
<li>Right mouse - pan</li>
<li>Mouse wheel - zoom</li>
<li>A - reset camera</li>
<li>Double click - center zoom on point</li>
</ul>
</div>
<!-- <h2>Preview</h2>
<canvas id='preview'>
</canvas> -->
<button id='submit'>Submit!</button>
</div>
</body>
<script src='build/js/bundle.js'></script>
</html>