Trait rs_math3d::vector::CrossProduct

source ·
pub trait CrossProduct {
    // Required method
    fn cross(l: &Self, r: &Self) -> Self;
}

Required Methods§

source

fn cross(l: &Self, r: &Self) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> CrossProduct for Vector3<T>
where T: Scalar,