-
Notifications
You must be signed in to change notification settings - Fork 0
/
asteroidBelt.html
47 lines (38 loc) · 912 Bytes
/
asteroidBelt.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
<!--
script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="systemTemplate.css">
</head>
<body>
<script src="jquery.min.js"></script>
<script src="prototypes.js"></script>
<script src="random.js"></script>
<script src="systemTables.js"></script>
<script src="systemTemplate.js"></script>
<script src="generator.js"></script>
<script>
var generate = function() {
var feature = {};
feature = asteroidBelt(planetRoll());
clearDebug();
printAsteroidBelt(feature);
}
var debug = function(l) {
var log = $('#log').append("<div>" + l + "</div>");
}
var clearDebug = function(l) {
$('#log').empty();
};
</script>
<div id="section-to-print" class='disp'>
<div id='log'></div>
</div>
<script>
seed = Date.now()
generate();
</script>
</body>
</html>