| 5 | |
| 6 | #[derive(PartialEq, Debug, Serialize, Deserialize)] |
| 7 | pub struct Vector4 { |
| 8 | pub x: f32, |
| 9 | pub y: f32, |
| 10 | pub z: f32, |
| 11 | pub w: f32, |
| 12 | } |
| 13 | |
| 14 | impl vector::Length for Vector4 { |
| 15 | fn get_squared_length(&self) -> f32 { |
nothing calls this directly
no outgoing calls
no test coverage detected