neophys 0.1.0

an ap physics study attempt
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::Force;

pub struct Basic {
    m: f32,
}

impl Force for Basic {
    fn calc(&self) -> f32 {
        self.m
    }
}