Trait bevy_hexasphere::Vec3[][src]

pub trait Vec3: Add<Self, Output = Self> + Mul<f32, Output = Self> + Copy {
    const ZERO: Self;

    fn dot(self, other: Self) -> f32;
fn normalize(self) -> Self;
fn from_arr3(data: [f32; 3]) -> Self; }

Associated Constants

const ZERO: Self[src]

Loading content...

Required methods

fn dot(self, other: Self) -> f32[src]

fn normalize(self) -> Self[src]

fn from_arr3(data: [f32; 3]) -> Self[src]

Loading content...

Implementors

Loading content...