diff options
Diffstat (limited to 'graphics/src/geometry')
| -rw-r--r-- | graphics/src/geometry/fill.rs | 14 | ||||
| -rw-r--r-- | graphics/src/geometry/style.rs | 3 | 
2 files changed, 14 insertions, 3 deletions
| diff --git a/graphics/src/geometry/fill.rs b/graphics/src/geometry/fill.rs index 2e8c1669..b773c99b 100644 --- a/graphics/src/geometry/fill.rs +++ b/graphics/src/geometry/fill.rs @@ -1,8 +1,9 @@  //! Fill [crate::widget::canvas::Geometry] with a certain style. -use iced_core::{Color, Gradient}; -  pub use crate::geometry::Style; +use crate::core::Color; +use crate::gradient::{self, Gradient}; +  /// The style used to fill geometry.  #[derive(Debug, Clone)]  pub struct Fill { @@ -49,6 +50,15 @@ impl From<Gradient> for Fill {      }  } +impl From<gradient::Linear> for Fill { +    fn from(gradient: gradient::Linear) -> Self { +        Fill { +            style: Style::Gradient(Gradient::Linear(gradient)), +            ..Default::default() +        } +    } +} +  /// The fill rule defines how to determine what is inside and what is outside of  /// a shape.  /// diff --git a/graphics/src/geometry/style.rs b/graphics/src/geometry/style.rs index be9ee376..a0f4b08a 100644 --- a/graphics/src/geometry/style.rs +++ b/graphics/src/geometry/style.rs @@ -1,4 +1,5 @@ -use iced_core::{Color, Gradient}; +use crate::core::Color; +use crate::geometry::Gradient;  /// The coloring style of some drawing.  #[derive(Debug, Clone, PartialEq)] | 
