-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
23 lines (23 loc) · 971 Bytes
/
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
<html>
<head>
<meta charset="UTF-8" />
<title>Boids</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.dom.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.sound.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</head>
<body>
<header>
<h1 class="title">Flocking</h1>
<p class="page-description"> This is a little example of flocking using p5.js. This algorithm was inspired by the Boids algorithm
(created by Craig Reynolds) and by the video of The Coding Train on Youtube.</p>
</header>
<div>
<script src="sketch.js"></script>
</div>
<script src="boid.js"></script>
<script src="obstacle.js"></script>
</body>
</html>