chore: updated /murmurations 5ffe5c02
Steve Simkins · 2026-05-03 13:13 1 file(s) · +8 −4
src/pages/murmurations.astro +8 −4
55 55
      No leader directs them; coherence emerges from each bird reacting to its closest neighbors.
56 56
		</p>
57 57
		<p class="mb-2">
58 -
			This simulation uses <a class="underline" href="https://en.wikipedia.org/wiki/Boids" target="_blank" rel="noreferrer">Craig Reynolds&apos; boids algorithm</a>:
59 -
			each agent follows three rules — <strong>separation</strong> (avoid crowding),
60 -
			<strong>alignment</strong> (match neighbor heading), and <strong>cohesion</strong> (steer toward neighbor center).
58 +
			This simulation uses <a class="underline" href="https://en.wikipedia.org/wiki/Boids" target="_blank" rel="noreferrer">Craig Reynolds&apos; boids algorithm</a>.
59 +
			Each agent follows three rules:
61 60
		</p>
61 +
		<ol class="mb-2 ml-5 list-decimal space-y-1">
62 +
			<li><strong>Separation</strong> (avoid crowding)</li>
63 +
			<li><strong>Alignment</strong> (match neighbor heading)</li>
64 +
			<li><strong>Cohesion</strong> (steer toward neighbor center)</li>
65 +
		</ol>
62 66
		<p>
63 -
			Real starlings track ~7 nearest neighbors regardless of distance — topological, not metric.
67 +
			Real starlings track ~7 nearest neighbors regardless of distance: topological, not metric.
64 68
			That fixed count is why turning waves cross the flock so fast and stay crisp at any density.
65 69
		</p>
66 70
	</div>