Trait bevy_internal::math::cubic_splines::Point
source · 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.