pub(crate) struct MCurves3 {
pub(crate) curve0: Box<[f32; 65536]>,
pub(crate) curve1: Box<[f32; 65536]>,
pub(crate) curve2: Box<[f32; 65536]>,
pub(crate) matrix: Matrix3f,
pub(crate) bias: Vector3f,
pub(crate) inverse: bool,
pub(crate) depth: usize,
}Fields§
§curve0: Box<[f32; 65536]>§curve1: Box<[f32; 65536]>§curve2: Box<[f32; 65536]>§matrix: Matrix3f§bias: Vector3f§inverse: bool§depth: usizeImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MCurves3
impl RefUnwindSafe for MCurves3
impl Send for MCurves3
impl Sync for MCurves3
impl Unpin for MCurves3
impl UnsafeUnpin for MCurves3
impl UnwindSafe for MCurves3
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