@@ -139,12 +139,6 @@ pub fn render_from_config(config: &Config) -> Result<RgbImage> {
139
139
use rand:: SeedableRng ;
140
140
use rand_xoshiro:: Xoshiro256PlusPlus ;
141
141
142
- // Create RNG
143
- let rng = match config. rng_name . as_str ( ) {
144
- "Xoshiro256PlusPlus" => Xoshiro256PlusPlus :: seed_from_u64 ( config. seed ) ,
145
- _ => return Err ( Error :: ConfigError ( format ! ( "Unknown RNG: {}" , config. rng_name) ) ) ,
146
- } ;
147
-
148
142
// Validate IFS configuration
149
143
if config. ifs_name != "SigmaFactorIFS" {
150
144
return Err ( Error :: ConfigError ( format ! ( "Unknown IFS: {}" , config. ifs_name) ) ) ;
@@ -154,9 +148,21 @@ pub fn render_from_config(config: &Config) -> Result<RgbImage> {
154
148
return Err ( Error :: ConfigError ( format ! ( "Unsupported dimension: {}" , config. ndims) ) ) ;
155
149
}
156
150
151
+ // Create RNG for IFS generation
152
+ let mut rng_for_ifs = match config. rng_name . as_str ( ) {
153
+ "Xoshiro256PlusPlus" => Xoshiro256PlusPlus :: seed_from_u64 ( config. seed ) ,
154
+ _ => return Err ( Error :: ConfigError ( format ! ( "Unknown RNG: {}" , config. rng_name) ) ) ,
155
+ } ;
156
+
157
157
// Create IFS
158
- let ifs = crate :: core:: ifs:: rand_sigma_factor_ifs ( & mut rng. clone ( ) ) ;
158
+ let ifs = crate :: core:: ifs:: rand_sigma_factor_ifs ( & mut rng_for_ifs) ;
159
+
160
+ // Create a new RNG for rendering with the same seed
161
+ let rng_for_render = match config. rng_name . as_str ( ) {
162
+ "Xoshiro256PlusPlus" => Xoshiro256PlusPlus :: seed_from_u64 ( config. seed ) ,
163
+ _ => return Err ( Error :: ConfigError ( format ! ( "Unknown RNG: {}" , config. rng_name) ) ) ,
164
+ } ;
159
165
160
166
// Render image
161
- Ok ( render ( rng , & ifs, config) )
167
+ Ok ( render ( rng_for_render , & ifs, config) )
162
168
}
0 commit comments