aboutsummaryrefslogtreecommitdiff
path: root/src/material/mod.rs
blob: 3e92bf647a8ca386dc2fbd7ea3f15a3a7ea5a83f (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 reflectant;
mod diffuse_light;
mod sky_light;

pub use lambertian::Lambertian;
pub use reflectant::Reflectant;
pub use diffuse_light::DiffuseLight;
pub use sky_light::SkyLight;

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

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