Trait interpolation::Spatial [] [src]

pub trait Spatial {
    type Scalar;
    fn add(&self, other: &Self) -> Self;
    fn sub(&self, other: &Self) -> Self;
    fn scale(&self, scalar: &Self::Scalar) -> Self;
}

Used for interpolation over spatial structures.

Associated Types

The scalar type.

Required Methods

Add

Subtract

Scales with a scalar.

Implementors