A nannou sketch I made live at GitHub Universe 2020.
If you checkout this repository and run it, you'll get the final result, not the step-by-step progression that I go through the talk.
If you want to follow along the talk from scratch, you must install a few things first:
- rust of course! Follow the instructions here
- create a new binary project somewhere using
cargo new --bin universe
- in the
universe
directory, addnannou
as a dependency to your project by adding the linenannou = "0.15"
after thedependencies
entry in theCargo.toml
file - Copy the template to your
src/main.rs
file - Compile once the application using
cargo run --release
You should be able to then just reproduce what I do in the video.
The repository here just gives you the final result, feel free to play around and ping me with your results!