-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
72 lines (56 loc) · 2.34 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>Flocking</title>
<meta name="description" content="An interactive simulation of flocking behavior in birds. Based on the 1986 paper by Craig Reynolds. Change the behavior of the flock by adjusting different parameters.">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<style>
* { margin: 0; padding: 0; }
#footnote {
position: absolute;
bottom:10px;
right: 20px;
width: 100%;
font-family: sans-serif;
color: #AAAAAA;
font-size: 12px;
text-align: right;
}
#footnote a {
color: #AAAAAA;
}
</style>
<script type="text/javascript" src="js/underscore.js"></script>
<script type="text/javascript" src="js/three.min.js"></script>
<script type="text/javascript" src="js/TrackballControls.js"></script>
<script type="text/javascript" src="js/THREEx.KeyboardState.js"></script>
<script type="text/javascript" src="js/ThreeOctree.js"></script>
<script type="text/javascript" src="js/jshashtable-2.1.js"></script>
<script type="text/javascript" src="js/stats.js"></script>
<script type="text/javascript" src="js/dat.gui.min.js"></script>
<script type="text/javascript" src="js/Detector.js"></script>
<!-- Game Javascript -->
<script type="text/javascript" src="js/bird_object.js"></script>
<script type="text/javascript" src="js/bird.js"></script>
<script type="text/javascript" src="js/flock.js"></script>
<script type="text/javascript" src="js/world.js"></script>
<!-- // <script type="text/javascript" src="js/flock.js"></script>
// <script type="text/javascript" src="js/bird.js"></script>
// <script type="text/javascript" src="js/building.js"></script> -->
</head>
<body style="overflow:hidden;">
<div id="footnote" style="z-index: 3">BUILT BY <a href="http://edkelleyv.com">ED KELLEY</a></div>
</body>
<script>
if ( ! Detector.webgl ) Detector.addGetWebGLMessage();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-38517102-3', 'ekelleyv.github.io');
ga('send', 'pageview');
</script>
</html>