diff --git a/README.md b/README.md index 8694ecb..3009d16 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![Physarum distribution](assets/frame.png) +![Physarum distribution](assets/example.gif) I recently came across [this repo](https://github.com/fogleman/physarum) that uses Go to implement an extended version of the Physarum transport networks model, first described in: diff --git a/assets/example.gif b/assets/example.gif new file mode 100644 index 0000000..df79582 Binary files /dev/null and b/assets/example.gif differ diff --git a/src/main.rs b/src/main.rs index 00ab9ca..f471471 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,8 +2,8 @@ use physarum::model; fn main() { // # of iterations to go through - // let n_iterations = 1024; - let n_iterations = 2048; + let n_iterations = 1024; + // let n_iterations = 2048; // Size of grid and pictures let (width, height) = (256, 256);