| 11 | |
| 12 | #[derive(Clone, Copy)] |
| 13 | pub enum EasingFunction { |
| 14 | Linear, |
| 15 | EaseIn, |
| 16 | EaseOut, |
| 17 | EaseInOut, |
| 18 | } |
| 19 | |
| 20 | impl Animation { |
| 21 | pub fn new(start: f32, end: f32, duration: Duration) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected