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§

§

impl Point for f32

Implementors§

§

impl Point for Vec2

§

impl Point for Vec3

§

impl Point for Vec3A