vec3 0.1.6

rust vector 3 functions
Documentation
#![no_std]

extern crate number_traits;

mod create;
pub use create::*;

mod set;
pub use set::*;

mod add;
pub use add::*;

mod sub;
pub use sub::*;

mod mul;
pub use mul::*;

mod div;
pub use div::*;

mod length;
pub use length::*;

mod misc;
pub use misc::*;

mod transform;
pub use transform::*;