Crates.io | fractious |
lib.rs | fractious |
version | 0.1.1 |
source | src |
created_at | 2019-02-11 03:00:34.299233 |
updated_at | 2019-02-17 17:32:22.546089 |
description | A command-line program for generating images of the Mandelbrot set. |
homepage | https://github.com/jonstites/fractious |
repository | https://github.com/jonstites/fractious |
max_upload_size | |
id | 114009 |
size | 24,546 |
fractious
is a command-line program for generating images of the Mandelbrot set.
With the default options, fractious
produces the following image:
$ fractious -o mandelbrot.jpeg
The region of complex numbers to display can be specified, as can the dimensions of the image:
$ fractious -o mandelbrot_corner.jpeg -r "-2+1i,0" -p 600x300
Precompiled binaries are available for Linux, macOS, and Windows.
Linux and macOS binaries are static, so nothing else needs to be installed. Windows binaries require Microsoft Visual C++ (MSVC) Redistributable for Visual Studio 2017.
For Rust programmers, fractious
can be installed with cargo
:
$ cargo install fractious
If you have Rust installed, you can build from source:
$ git clone git@github.com:jonstites/fractious.git
$ cd fractious
$ cargo build --release
$ ./target/release/fractious --version
fractious 0.1.1
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.