https://github.com/alkc/boids
An updated take at an old project of mine
https://github.com/alkc/boids
boids
Last synced: 8 months ago
JSON representation
An updated take at an old project of mine
- Host: GitHub
- URL: https://github.com/alkc/boids
- Owner: alkc
- Created: 2018-03-08T13:12:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-15T16:52:15.000Z (about 8 years ago)
- Last Synced: 2025-05-30T18:14:18.191Z (about 1 year ago)
- Topics: boids
- Language: Python
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Boids!
Wherein [yours truly](https://github.com/alkc) tries his hand at a remake of an old [project.](https://github.com/alkc/flockingboids)
The current end goal of this project is a better optimized simulation that matches the old simulation's features. I'm basically using this for learning how to write better python code.
Feel free to leaf through the [changelog](changelog.md) for list of changes between versions.
## Installation:
Want to install this? Follow the instructions below:
### Linux
Easiest way to get this to run, I think, is to use conda to create an environment fron the included
`environment.yml` file, activate the env and then run `boids.py`:
```
git clone https://github.com/alkc/boids.git
cd boids
conda env create -f environment.yml
source activate boids
python3 boids.py
```