File tree Expand file tree Collapse file tree 4 files changed +22
-9
lines changed
Expand file tree Collapse file tree 4 files changed +22
-9
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ display_glitches = false
1010auto_adjust_iterations = true
1111probe_sampling = 3
1212remove_centre = true
13- export = " colour "
13+ export = " png "
Original file line number Diff line number Diff line change 1- image_width = 2000
2- image_height = 2000
1+ image_width = 1920
2+ image_height = 1080
33rotate = 0
4- approximation_order = 32
4+ approximation_order = 48
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 = " both "
13+ export = " raw "
Original file line number Diff line number Diff line change 1+ image_width = 500
2+ image_height = 500
3+ rotate = 0
4+ approximation_order = 16
5+ glitch_tolerance = 0.001
6+ frames = 1
7+ frame_offset = 0
8+ zoom_scale = 2.0
9+ display_glitches = false
10+ auto_adjust_iterations = true
11+ probe_sampling = 2
12+ remove_centre = true
13+ export = " png"
Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ fn main() {
2828
2929 let mut settings = Config :: default ( ) ;
3030
31- if let Some ( l) = matches. value_of ( "INPUT" ) {
32- settings. merge ( File :: with_name ( l) . required ( true ) ) . unwrap ( ) ;
33- } ;
34-
3531 if let Some ( p) = matches. value_of ( "options" ) {
3632 settings. merge ( File :: with_name ( p) . required ( true ) ) . unwrap ( ) ;
3733 } ;
3834
35+ if let Some ( l) = matches. value_of ( "INPUT" ) {
36+ settings. merge ( File :: with_name ( l) . required ( true ) ) . unwrap ( ) ;
37+ } ;
38+
3939 let mut renderer = FractalRenderer :: new ( settings) ;
4040 // renderer.render("output/output".to_owned());
4141 renderer. render ( ) ;
You can’t perform that action at this time.
0 commit comments