aboutsummaryrefslogtreecommitdiff
path: root/src/material/mod.rs
blob: d3c3154670298ee7c4d7cb700e87e6dc3fbe8846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use crate::core::{Ray, Spectrum};
use crate::world::Intersection;
use crate::sample::Sampler;

mod lambertian;
mod diffuse_light;
mod sky_light;
mod dielectric;

pub use lambertian::Lambertian;
pub use diffuse_light::DiffuseLight;
pub use sky_light::SkyLight;
pub use dielectric::Dielectric;

pub trait Material: Sync + Send {
    fn scatter(&self, _: &Ray, _: &Intersection, _: &mut dyn Sampler) -> Option<(Spectrum, Ray)> {
        None
    }

    fn emitted(&self, _: &Ray) -> Option<Spectrum> {
        None
    }
}