(start: f64, end: f64, t: f64)
| 5819 | } |
| 5820 | |
| 5821 | fn lerp(start: f64, end: f64, t: f64) -> f64 { |
| 5822 | start + (end - start) * t |
| 5823 | } |
| 5824 | |
| 5825 | fn hid_for_character(character: char) -> Option<(u16, u32)> { |
| 5826 | let shift: u32 = 1; |
no outgoing calls
no test coverage detected