Toy with different teapot scenes

master
max.nuding 2022-07-14 13:06:30 +02:00
parent ab349b1d7e
commit dc19f09da9
Failed to extract signature
1 changed files with 14 additions and 9 deletions

View File

@ -61,7 +61,7 @@ fn obj(path: &str) -> Scene {
let object = obj_to_hitable(&std::path::Path::new(path));
print!("Object hitbox: {:#?}", object.bounding_box(0.0, 1.0));
let difflight = Arc::new(Material::white_light(2.0));
let difflight = Arc::new(Material::white_light(4.0));
let world: HittableList = vec![
object,
@ -71,26 +71,31 @@ fn obj(path: &str) -> Scene {
2.0,
-2.0,
2.0,
5.0,
10.0,
difflight.clone()
)),
Arc::new(Sphere::new(
Point3::new(-5.0, 5.0, 0.0),
1.0,
Arc::new(Material::white_light(4.0))
difflight.clone()
)),
Arc::new(Sphere::new(
Point3::new(4.0, 3.5, 1.0),
1.0,
Point3::new(0.6, 3.5, -0.6),
0.4,
Arc::new(Material::Metal(Metal::new(Color::new(1.0, 0.0, 0.0), 0.2)))
)),
Arc::new(Sphere::new(
Point3::new(1.7, 0.4, 1.7),
0.4,
Arc::new(Material::solid(0.2, 0.2, 0.8))
)),
Arc::new(Sphere::new(
Point3::new(0.0, 300.0, 0.0),
300.0,
Arc::new(Material::Lambertian(Lambertian::textured(Arc::new(NoiseTexture { noise: Perlin::new(), scale: 20.0 }))))
Arc::new(Material::Lambertian(Lambertian::textured(Arc::new(NoiseTexture { noise: Perlin::new(), scale: 0.1 }))))
))];
let look_from = Point3::new(10.0, 6.0, 10.0);
let look_from = Point3::new(8.0, 10.0, 8.0);
let look_at = Point3::new(0.0, 1.0, 0.0);
let focus_dist = 2.0;
@ -99,7 +104,7 @@ fn obj(path: &str) -> Scene {
look_at,
Vec3::new(0.0, 1.0, 0.0),
1.0,
40.0,
30.0,
0.0,
focus_dist,
0.0,
@ -830,7 +835,7 @@ fn next_week_final() -> Scene {
}
fn main() {
//rayon::ThreadPoolBuilder::new().num_threads(1).build_global().unwrap(); // Enable, to reduce load
rayon::ThreadPoolBuilder::new().num_threads(1).build_global().unwrap(); // Enable, to reduce load
// World
let scene: u8 = 8;
let scene_setup = match scene {