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
42
43
44
45
use crate::math::Dir3;
#[derive(Clone)]
pub enum Side {
Inside(Dir3),
Outside(Dir3),
}
impl Side {
#[inline]
#[must_use]
pub fn new(dir: &Dir3, norm: Dir3) -> Self {
if dir.dot(&norm) < 0.0 {
Self::Outside(norm)
} else {
Self::Inside(-norm)
}
}
#[inline]
#[must_use]
pub const fn is_inside(&self) -> bool {
match *self {
Self::Inside(..) => true,
Self::Outside(..) => false,
}
}
#[inline]
#[must_use]
pub const fn norm(&self) -> &Dir3 {
match *self {
Self::Inside(ref dir) | Self::Outside(ref dir) => dir,
}
}
}