pub trait Point: Mul<f32, Output = Self> + Add<Self, Output = Self> + Sub<Self, Output = Self> + Add<f32, Output = Self> + Sum + Default + Debug + Clone + PartialEq + Copy { }
Expand description

A point in space of any dimension that supports the math ops needed for cubic spline interpolation.

Implementations on Foreign Types§

source§

impl Point for f32

Implementors§