-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (54 loc) · 1.87 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
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/css/materialize.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/addons/p5.dom.min.js"></script>
<meta charset="utf-8">
<title>Smart Rockets</title>
</head>
<body>
<div id="topWrapper">
<h2 id="title">Smart Rockets</h2>
<div class="row valign-wrapper">
<div class="col m8">
<blockquote>
<span id='description'>An implementation of a genetic evolutionary algorithm based on the
<a href='http://www.blprnt.com/smartrockets/'>SmartRockets</a> sketch and inspired by the videos by
<a href='https://github.com/shiffman'>Daniel Shiffman</a>
</span>
<a href="https://github.com/cahilfoley">@cahilfoley</a>
</blockquote>
</div>
<div id="speedWrapper" class="col m4">
<p>
<label>
<input id="regular" name="speed" type="radio" class="filled-in" checked />
<span>Fast</span>
</label>
</p>
<p>
<p>
<label>
<input id="fast" name="speed" type="radio" class="filled-in" />
<span>Fast</span>
</label>
</p>
<p>
<label>
<input id="superSpeed" name="speed" type="radio" class="filled-in" />
<span>Super Fast</span>
</label>
</p>
</div>
</div>
</div>
<script src="DNA.js"></script>
<script src="Obstacle.js"></script>
<script src="Rocket.js"></script>
<script src="Population.js"></script>
<script src="sketch.js"></script>
</body>
</html>