1 2 3 4 5 6
pub mod vec2; pub trait Vector { fn new(a: f32, b: f32) -> Self; fn scale(&mut self, f: f32); }