pub struct NNI {
pub precompute: bool,
}Expand description
Estimation of z-value with interpolation: natural neighbour interpolation (nni), also called Sibson’s interpolation
Fields§
§precompute: boolTrait Implementations§
Source§impl Interpolant for NNI
impl Interpolant for NNI
fn interpolate( &self, dt: &mut Triangulation, locs: &Vec<[f64; 2]>, ) -> Vec<Result<f64, StartinError>>
Auto Trait Implementations§
impl Freeze for NNI
impl RefUnwindSafe for NNI
impl Send for NNI
impl Sync for NNI
impl Unpin for NNI
impl UnsafeUnpin for NNI
impl UnwindSafe for NNI
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