(self, to: Self, t: f32)
| 315 | /// Returns an interpolated copy between this vector and `to`. |
| 316 | #[inline] |
| 317 | pub fn lerped(self, to: Self, t: f32) -> Self { |
| 318 | Self::from_glam(self.to_glam().lerp(to.to_glam(), t)) |
| 319 | } |
| 320 | |
| 321 | /// Linearly interpolates this vector toward `to` in place. |
| 322 | #[inline] |
no test coverage detected