-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<script type="text/javascript" src="renderer.js"></script>
<head>
<meta charset="UTF-8">
<title>Solar system</title>
</head>
<body onload="init()">
<canvas id="canvas" height="400" width="400"></canvas>
<ul>
<li>Semi major axis <input type="number" id="sm-axis"><br></li>
<li>Passage time <input type="number" id="pass-time"><br></li>
<li>Eccentricity <input type="number" id="eccent"><br></li>
<li>Note argument <input type="number" id="note-arg"><br></li>
<li>Perecenter argument <input type="number" id="per-arg"><br></li>
<li>Inclanation <input type="number" id="inclan"><br></li>
</ul>
<input type="button" id="moonBtn" value="Move Moon" onclick="replaceMoon()" />
<input type="button" id="viewSide" value="Change projection" onclick="changeSight()" />
<input type="button" id="consoleCoords" value="consoleCoords" onclick="consoleCoords()" />
</body>
</html>