#[repr(C)]pub struct b3CosSin {
pub cosine: f32,
pub sine: f32,
}Expand description
Cosine and sine pair. This uses a custom implementation designed for cross-platform determinism.
Fields§
§cosine: f32cosine and sine
sine: f32Trait Implementations§
Auto Trait Implementations§
impl Freeze for b3CosSin
impl RefUnwindSafe for b3CosSin
impl Send for b3CosSin
impl Sync for b3CosSin
impl Unpin for b3CosSin
impl UnsafeUnpin for b3CosSin
impl UnwindSafe for b3CosSin
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