File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 11# Flocking + Clustering
22# original Flocking Sketch by Daniel Shiffman.
33#
4- # In this adaptation of Dan Shiffman's Flocking example code, the boids are
5- # repeatedly clustered using the KMeans algorithm from scikit-learn. The cluster
6- # labels are then used to give the boids in each cluster a unique color.
4+ # In this adaptation of Dan Shiffman's Flocking example, the boids are
5+ # repeatedly clustered using the KMeans algorithm from scikit-learn. Each Boid
6+ # will ignore Boids in other clusters. The cluster labels are used to give the
7+ # boids in each cluster a unique color.
78#
89# An implementation of Craig Reynold's Boids program to simulate
910# the flocking behavior of birds. Each boid steers itself based on
Original file line number Diff line number Diff line change 66 * Flocking + Clustering
77 * original Flocking Sketch by Daniel Shiffman.
88 *
9- * In this adaptation of Dan Shiffman's Flocking example code , the boids are
10- * repeatedly clustered using the KMeans algorithm from scikit-learn. The
11- * cluster labels are then used to give the boids in each cluster a unique
12- * color.
9+ * In this adaptation of Dan Shiffman's Flocking example, the boids are
10+ * repeatedly clustered using the KMeans algorithm from scikit-learn. Each Boid
11+ * will ignore Boids in other clusters. The cluster labels are used to give the
12+ * boids in each cluster a unique color.
1313 *
1414 * An implementation of Craig Reynold's Boids program to simulate
1515 * the flocking behavior of birds. Each boid steers itself based on
You can’t perform that action at this time.
0 commit comments