(self, rhs: Self)
| 209 | /// Cross product returns a vector perpendicular to both inputs |
| 210 | #[inline] |
| 211 | pub fn cross(self, rhs: Self) -> Self { |
| 212 | Self::from_glam(self.to_glam().cross(rhs.to_glam())) |
| 213 | } |
| 214 | |
| 215 | /// Squared length (avoids a sqrt when only comparing distances) |
| 216 | #[inline] |
no test coverage detected