Skip to content

Commit 66c388b

Browse files
committed
Added more skeleton
1 parent 69ecee5 commit 66c388b

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

Boids.html

+24
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,30 @@ <h1> Contents </h1>
3131
<h1> What you'll create </h1>
3232

3333
<script src="/SimulationLabs/Scripts/Boids/Boids.js"></script>
34+
35+
<h1> Prereqs </h1>
36+
37+
<ul>
38+
<p> Know how to code </p>
39+
</ul>
40+
<ul>
41+
<p> Basic OOP </p>
42+
</ul>
43+
44+
<h1> Processing/JavaScript Intro </h1>
45+
46+
<p> This should be an intro to basic programming but in JavaScript, taught using basic simulations <emph>(such as the random stepper displayed on the page instead of the actual boids simulation)</emph> </p>
47+
48+
<h1> Autonomous Agents Intro </h1>
49+
50+
<p> Applying forces, basic goals </p>
51+
52+
<h1> Creating boid flocks </h1>
53+
54+
<p> With room for more behaviours! </p>
55+
56+
<h1> Extension Material</h1>
3457

58+
<p> Link to an <a href="/SimulationLabs/BoidsExtension"> extension site </a> with scope for learning how to host your own </p>
3559
</body>
3660
</html>

BoidsExtension.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
---
3+
4+
<!DOCTYPE html>
5+
6+
<html lang="en">
7+
<head>
8+
<meta charset="UTF-8">
9+
<title> BOIDS </title>
10+
11+
<!-- CDNs -->
12+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
13+
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/p5.js"></script>
14+
15+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
16+
<link href="/SimulationLabs/Stylesheets/Default.css" rel="stylesheet">
17+
</head>
18+
19+
<body>
20+
{% include HeaderBar.html %}
21+
22+
<!-- Page content -->
23+
<p> Extension page! </p>
24+
</body>
25+
</html>

0 commit comments

Comments
 (0)