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
use crate::Distance;
use mini_math::Point;
#[derive(Debug)]
pub struct Sphere {
pub center: Point,
pub radius: f32,
}
impl Sphere {
pub fn new(center: Point, radius: f32) -> Self {
Self { center, radius }
}
}
impl Distance<Point> for Sphere {
fn distance(&self, p: Point) -> f32 {
(p - self.center).magnitude() - self.radius
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_distance() {
let sphere = Sphere::new(Point::new(0.0, 0.0, 0.0), 5.0);
let p = Point::new(0.0, 0.0, -5.0);
assert_eq!(sphere.distance(p), 0.0);
let p = Point::new(0.0, 0.0, 15.0);
assert_eq!(sphere.distance(p), 10.0);
}
}