(&self, other: &Self, factor: f64)
| 41 | } |
| 42 | |
| 43 | fn mix(&self, other: &Self, factor: f64) -> Self { |
| 44 | self.lerp(*other, (factor as f32).clamp(0., 1.), HueDirection::Shorter) |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | impl Mixable for Rect { |
no outgoing calls
no test coverage detected