We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0171602 commit 07c79acCopy full SHA for 07c79ac
output.png
-420 KB
output2.png
8.98 MB
src/bin/main.rs
@@ -61,7 +61,7 @@ fn main() {
61
center_im,
62
0.01,
63
false,
64
- 16
+ 0
65
);
66
67
let time = Instant::now();
src/renderer.rs
@@ -46,7 +46,7 @@ impl FractalRenderer {
46
ComplexArbitrary::parse("(".to_owned() + center_real + "," + center_imag + ")").expect("Location is not valid!"));
47
48
let auto_approximation = if approximation_order == 0 {
49
- let auto = (((image_width * image_height) as f64).log(1e6).powi(2) * 21.0f64) as usize;
+ let auto = (((image_width * image_height) as f64).log(1e6).powf(6.619) * 16.0f64) as usize;
50
min(max(auto, 3), 64)
51
} else {
52
approximation_order
0 commit comments