Skip to content

Commit 9b099a7

Browse files
committed
Added further reading
1 parent 9e31cd2 commit 9b099a7

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

Boids.html

+14-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414

1515
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
1616
<link href="/SimulationLabs/Stylesheets/Default.css" rel="stylesheet">
17+
18+
<!-- Simulations -->
19+
<script src="/SimulationLabs/Scripts/Boids/Boids.js" defer></script>
20+
1721
</head>
1822

1923
<body>
@@ -31,10 +35,9 @@ <h2> Contents </h2>
3135
<h2> What you'll create </h2>
3236

3337
<div id="BoidContainer"></div>
34-
<script src="/SimulationLabs/Scripts/Boids/Boids.js"></script>
35-
38+
3639
<emph> (This is not an actual boids sketch btw - this is a random stepper) </emph>
37-
40+
3841
<h2> Prereqs </h2>
3942

4043
<ul>
@@ -59,5 +62,13 @@ <h2> Creating boid flocks </h2>
5962
<h2> Extension Material</h2>
6063

6164
<p> Link to an <a href="/SimulationLabs/BoidsExtension"> extension site </a> with scope for learning how to host your own </p>
65+
66+
<h2> Further Reading </h2>
67+
68+
<ul>
69+
<li> <a href="https://www.youtube.com/watch?v=yGhfUcPjXuE"> Dear Game Developers, Stop Messing This Up! </a> - YT Video on delta-time and basic physics </li>
70+
<li> <a href="https://natureofcode.com/"> Nature of Code </a> - A book by Daniel Shiffman which these labs take inspiration from! It features a section on boids and many more simulations of things from nature (highly recommend) </li>
71+
<li> <a href="https://www.youtube.com/watch?v=bqtqltqcQhw">Coding Adventure: Boids</a> - Sebastian Lague's brilliant video on boids is the main inspiration for this lab! He takes boids into 3D and explores a raycasting approach to collision avoidance </li>
72+
</ul>
6273
</body>
6374
</html>

0 commit comments

Comments
 (0)