Trait coord::math::VecFloat[][src]

pub trait VecFloat: Vector where
    Self::Item: VecItem + Float
{ fn length(&self) -> Self::Item;
fn normalize(&self) -> Self; }

A trait for vectors containing floating point numerical types

Required Methods

Calculates the magnitude of the vector

Implementors