pub enum PathFillMode {
None,
Norm,
Lighten,
LightenLess,
Darken,
DarkenLess,
}
Expand description
This simple type specifies the manner in which a path should be filled. The lightening and darkening of a path allow for certain parts of the shape to be colored lighter of darker depending on user preference.
Variants§
None
This specifies that the corresponding path should have no fill.
Norm
This specifies that the corresponding path should have a normally shaded color applied to it’s fill.
Lighten
This specifies that the corresponding path should have a lightly shaded color applied to it’s fill.
LightenLess
This specifies that the corresponding path should have a slightly lighter shaded color applied to it’s fill.
Darken
This specifies that the corresponding path should have a darker shaded color applied to it’s fill.
DarkenLess
This specifies that the corresponding path should have a slightly darker shaded color applied to it’s fill.
Trait Implementations§
Source§impl Clone for PathFillMode
impl Clone for PathFillMode
Source§fn clone(&self) -> PathFillMode
fn clone(&self) -> PathFillMode
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more