neophys 0.1.0

an ap physics study attempt
Documentation
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);
}