struct ErrEval {
err_squared: f64,
unorms: [Vec2; 8],
err_vecs: [Vec2; 8],
}Expand description
Result of error evaluation
Fields§
§err_squared: f64Maximum detected error
unorms: [Vec2; 8]Unit normals sampled uniformly across approximation
err_vecs: [Vec2; 8]Difference between point on source curve and normal from approximation.
Auto Trait Implementations§
impl Freeze for ErrEval
impl RefUnwindSafe for ErrEval
impl Send for ErrEval
impl Sync for ErrEval
impl Unpin for ErrEval
impl UnwindSafe for ErrEval
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