pub struct FlattenCtx {
even_pts: [Point32; 20],
odd_pts: [Point32; 16],
a0: [f32; 16],
da: [f32; 16],
u0: [f32; 16],
uscale: [f32; 16],
val: [f32; 16],
n_quads: usize,
}
Expand description
The context needed for flattening curves.
Fields§
§even_pts: [Point32; 20]
§odd_pts: [Point32; 16]
§a0: [f32; 16]
§da: [f32; 16]
§u0: [f32; 16]
§uscale: [f32; 16]
§val: [f32; 16]
§n_quads: usize
Trait Implementations§
Source§impl Debug for FlattenCtx
impl Debug for FlattenCtx
Source§impl Default for FlattenCtx
impl Default for FlattenCtx
Source§fn default() -> FlattenCtx
fn default() -> FlattenCtx
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FlattenCtx
impl RefUnwindSafe for FlattenCtx
impl Send for FlattenCtx
impl Sync for FlattenCtx
impl Unpin for FlattenCtx
impl UnwindSafe for FlattenCtx
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