blob: 53d8ad3b255ee453683b7f051afd6f4e1ab35799 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
//! Manages world objects, and implements intersection
pub mod shapes;
mod scene;
pub mod container;
mod hittable;
pub use scene::*;
pub use hittable::{Intersection, Hittable};
use std::sync::Arc;
use crate::material::Material;
use crate::core::{Bound3f, Ray};
pub struct Object {
pub shape: Box<dyn Hittable + Sync>,
pub mat: Arc<dyn Material + Sync + Send>,
}
impl Object {
pub fn new(mat: Arc<dyn Material + Sync + Send>, shape: Box<dyn Hittable + Sync>) -> Self {
Object {
mat,
shape,
}
}
}
impl Hittable for Object {
fn intersect(&self, ray: &Ray) -> Option<Intersection> {
self.shape.intersect(ray).map(|mut i| {i.m = Some(self.mat.as_ref()); i})
}
fn bounding_box(&self) -> Bound3f {
self.shape.bounding_box()
}
}
|