A rust library for rendering fractals
Create visualisations of any fractal function by implementing the Drawable
trait and calling fractory_rs::draw_function()
on the custom fractal definition.
Or, use some of the included FractalFunction
s and ColourMap
s to quickly create visualisations of some popular fractals such as Mandlebrot and Burning Ship.
Recreate the images below by calling the associated cargo example:
Run cargo run --example mandlebrot
Run cargo run --example mandlebrot_zoomed
Run cargo run --example burning_ship
Run cargo run --example newton