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
use crate::{
real_irregular_solid_sh, real_regular_solid_sh, real_sh_hardcoded, SHCoordinates, SHEval,
SphrsFloat,
};
#[derive(Clone, Copy)]
pub enum RealSH {
Spherical,
RegularSolid,
IrregularSolid,
}
impl<T> SHEval<T> for RealSH
where
T: SphrsFloat,
{
type Output = T;
#[inline(always)]
fn eval(&self, l: i64, m: i64, p: &impl SHCoordinates<T>) -> Self::Output {
assert!(m.abs() <= l);
match self {
Self::Spherical => real_sh_hardcoded(l, m, p),
Self::RegularSolid => real_regular_solid_sh(l, m, p),
Self::IrregularSolid => real_irregular_solid_sh(l, m, p),
}
}
}