blob: 3a09522fadbe253702dc9334c5a2c6b610e548a3 (
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
37
38
39
40
41
|
//! 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> {
if let Some(mut inter) = self.shape.intersect(ray) {
inter.add_material_if_none(self.mat.as_ref());
Some(inter)
} else {
None
}
}
fn bounding_box(&self) -> Bound3f {
self.shape.bounding_box()
}
}
|