| 22 | } |
| 23 | |
| 24 | pub trait Length { |
| 25 | fn get_squared_length(&self) -> f32; |
| 26 | fn get_length(&self) -> f32; |
| 27 | fn normalize(&self) -> Self; |
| 28 | } |
| 29 | |
| 30 | pub trait Distance { |
| 31 | fn distance(&self, _rhs: &Self) -> f32; |
nothing calls this directly
no outgoing calls
no test coverage detected