Construct a CSS hue-rotate() filter effect
(angle_radians: f32)
| 484 | |
| 485 | /// Construct a CSS hue-rotate() filter effect |
| 486 | pub fn hue_rotate(angle_radians: f32) -> Self { |
| 487 | Self::ColorMatrix(ColorMatrix::hue_rotate(angle_radians)) |
| 488 | } |
| 489 | |
| 490 | /// Construct a CSS saturate() filter effect |
| 491 | pub fn saturate(amount: f32) -> Self { |
nothing calls this directly
no test coverage detected