Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 893 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 893 Bytes

boids_algorithm_visualization

This project is used for visualizing the boids algorithm in the browser

what is boids algorithm?

Boids is an artificial life simulation originally developed by Craig Reynolds. The aim of the simulation was to replicate the behavior of flocks of birds. Instead of controlling the interactions of an entire flock, however, the Boids simulation only specifies the behavior of each individual bird. With only a few simple rules, the program manages to generate a result that is complex and realistic enough to be used as a framework for computer graphics applications such as computer generated behavioral animation in motion picture films.

Links and resources

  1. Introduction : https://cs.stanford.edu/people/eroberts/courses/soco/projects/2008-09/modeling-natural-systems/boids.html
  2. Pseudocode: http://www.vergenet.net/~conrad/boids/pseudocode.html