Boids



The Boids algorithm is amazing! What is it? This is a simple demonstration of the boids algorithm that's featured in this Smarter Every Day video: How Flocking Birds Make Amazing Murmurations (Boids Algorithm) - Check the video out to learn how this simulation models flocking behavior in birds and other animals. How does it work? Each of the boids (bird-oid objects) obeys three simple rules:

1. Coherence
Each boid flies towards the the other boids. But they don't just immediately fly directly at each other. They gradually steer towards each other at a rate that you can adjust with the "coherence" slider.

2. Separation
Each boid also tries to avoid running into the other boids. If it gets too close to another boid it will steer away from it. You can control how quickly it steers with the "separation" slider.

3. Alignment
Finally, each boid tries to match the vector (speed and direction) of the other boids around it. Again, you can control how quickly they try to match vectors using the "coherence" slider.

There are a ton of ways to extend this simple model to better simulate the behavior of different animals. An example I showed in the video is to limit the "visual range" of each boid. Real animals can't see the entire flock; they can only see the other animals around them. By adjusting the visual range slider, you can adjust how far each boid can "see"—that is which other boids it considers when applying the three rules above.

Acknowledgement and thanks to:: Ben Eater
Nov. 20, 2022