pub trait Point: Mul<f32, Output = Self> + Add<Output = Self, Output = Self> + Sub<Output = Self> + Add<f32> + 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.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Point for f32

Implementors§