Skip to content

Commit 4b65557

Browse files
Fix bug: Use separate RNGs with the same seed for IFS generation and rendering
1 parent 893c3b5 commit 4b65557

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

src/core/renderer.rs

+14-8
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,6 @@ pub fn render_from_config(config: &Config) -> Result<RgbImage> {
139139
use rand::SeedableRng;
140140
use rand_xoshiro::Xoshiro256PlusPlus;
141141

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-
148142
// Validate IFS configuration
149143
if config.ifs_name != "SigmaFactorIFS" {
150144
return Err(Error::ConfigError(format!("Unknown IFS: {}", config.ifs_name)));
@@ -154,9 +148,21 @@ pub fn render_from_config(config: &Config) -> Result<RgbImage> {
154148
return Err(Error::ConfigError(format!("Unsupported dimension: {}", config.ndims)));
155149
}
156150

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+
157157
// 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+
};
159165

160166
// Render image
161-
Ok(render(rng, &ifs, config))
167+
Ok(render(rng_for_render, &ifs, config))
162168
}

0 commit comments

Comments
 (0)