File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- image_width = 1920
2- image_height = 1080
1+ image_width = 2000
2+ image_height = 2000
33rotate = 0
4- approximation_order = 64
4+ approximation_order = 32
55glitch_tolerance = 0.001
66frames = 1
77frame_offset = 0
@@ -10,4 +10,4 @@ display_glitches = false
1010auto_adjust_iterations = true
1111probe_sampling = 3
1212remove_centre = true
13- export = " png "
13+ export = " both "
Original file line number Diff line number Diff line change @@ -254,9 +254,9 @@ impl FractalRenderer {
254254
255255 if self . zoom . to_float ( ) < 1e10 {
256256 // SA has some problems with precision with lots of terms at lot zoom levels
257- if self . series_approximation . order > 3 {
257+ if self . series_approximation . order > 8 {
258258 // Overwrite the series approximation order
259- self . series_approximation . order = 3 ;
259+ self . series_approximation . order = 8 ;
260260 self . series_approximation . maximum_iteration = self . center_reference . current_iteration ;
261261 self . series_approximation . generate_approximation ( & self . center_reference ) ;
262262 }
You can’t perform that action at this time.
0 commit comments