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

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

Implementations on Foreign Types§

§

impl Point for f32

Implementors§

§

impl Point for Vec2

§

impl Point for Vec3

§

impl Point for Vec3A