blob: 20c82f7b074dc1f7e81c7188312d2661b0298b10 (
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::{Vector3f, Ray};
/// Returns the context of a intersection
pub struct Intersection {
/// Normal vector at intersection
pub n: Vector3f,
pub p: Vector3f,
}
impl Intersection {
pub fn norm_against_ray(&self, r: &Ray) -> Vector3f {
if self.n.dot(&r.direction) < 0.0 {
self.n
} else {
-self.n
}
}
}
/// Defines a common trait for objects in the scene
pub trait Hittable {
fn intersect(&self, ray: &Ray) -> Option<Intersection>;
}
|