simple_vec3 1.0.0

Just a quick and simple lib to use a Vec3 type
Documentation
1
2
3
4
5
6
7
8
use crate::vec3::vec3::VectorConversion;

pub mod vec3;

pub fn run() {

    println!("{:#?}", vec![1.0, 2.0, 3.0].to_vec3::<f64>());
}