mirror of
https://github.com/Noratrieb/mandelbrot-rust.git
synced 2026-01-15 15:55:04 +01:00
kind of works
This commit is contained in:
parent
be61bdeaa5
commit
f4b33c7c03
3 changed files with 87 additions and 38 deletions
|
|
@ -1,9 +1,9 @@
|
|||
use mandelbrot_set::Config;
|
||||
|
||||
fn main() {
|
||||
let config = Config::new(1, 3, 100, 100.0);
|
||||
let config = Config::new(1, 4, 200, 100.0);
|
||||
|
||||
match mandelbrot_set::main(config) {
|
||||
match mandelbrot_set::run(config) {
|
||||
Ok(s) => println!("{}", s),
|
||||
Err(e) => println!("Error: {}", e)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue