diff options
author | 2024-05-03 13:25:58 +0200 | |
---|---|---|
committer | 2024-05-03 13:25:58 +0200 | |
commit | fa9e1d96ea1924b51749b775ea0e67e69bc8a305 (patch) | |
tree | 20cb13d6e3074569a15a16c8b0d261b1875a2045 /graphics | |
parent | 38cf87cb45484c7e52ddf775fb3abd7edbecc652 (diff) | |
download | iced-fa9e1d96ea1924b51749b775ea0e67e69bc8a305.tar.gz iced-fa9e1d96ea1924b51749b775ea0e67e69bc8a305.tar.bz2 iced-fa9e1d96ea1924b51749b775ea0e67e69bc8a305.zip |
Introduce dynamic `opacity` support for `Image` and `Svg`
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/src/image.rs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/graphics/src/image.rs b/graphics/src/image.rs index 9d09bf4c..318592be 100644 --- a/graphics/src/image.rs +++ b/graphics/src/image.rs @@ -18,8 +18,11 @@ pub enum Image { /// The bounds of the image. bounds: Rectangle, - /// The rotation of the image in radians + /// The rotation of the image. rotation: Radians, + + /// The opacity of the image. + opacity: f32, }, /// A vector image. Vector { @@ -32,8 +35,11 @@ pub enum Image { /// The bounds of the image. bounds: Rectangle, - /// The rotation of the image in radians + /// The rotation of the image. rotation: Radians, + + /// The opacity of the image. + opacity: f32, }, } |