pub struct HarmonicsSet<T, E> { /* private fields */ }
Expand description
A set of spherical/solid harmonics up to a given degree
Implementations§
Source§impl<T, E> HarmonicsSet<T, E>where
T: SphrsFloat,
E: SHEval<T>,
impl<T, E> HarmonicsSet<T, E>where
T: SphrsFloat,
E: SHEval<T>,
Sourcepub fn new(degree: usize, sh_type: E) -> HarmonicsSet<T, E>
pub fn new(degree: usize, sh_type: E) -> HarmonicsSet<T, E>
Create new HarmonicsSet
struct
Auto Trait Implementations§
impl<T, E> Freeze for HarmonicsSet<T, E>where
E: Freeze,
impl<T, E> RefUnwindSafe for HarmonicsSet<T, E>where
E: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, E> Send for HarmonicsSet<T, E>
impl<T, E> Sync for HarmonicsSet<T, E>
impl<T, E> Unpin for HarmonicsSet<T, E>
impl<T, E> UnwindSafe for HarmonicsSet<T, E>where
E: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more