Introduction
Valora is a brush for generative fine art. With valora you can write visual compositions that
are repeatable with rng seeds managed for you
can be reproduced at arbitrary resolutions without changing the scale of the composition
have strict type-safe color semantics that won't surprise you in print (thanks to palette!)
leverage all of your hardware (You can shade each path with a different fragment shader!)
you will rarely have to debug, thanks to Rust!
This guide covers valora in depth, but to start let's see some pixels! Keep the docs open to follow along.
Put the following in your main.rs
:
Now execute:
The first time, compilation will take a while. When valora starts, you should see a window with a red circle oscillating in size.
Last updated