Struct owned_ttf_parser::colr::RadialGradient
source · pub struct RadialGradient<'a> {
pub x0: f32,
pub y0: f32,
pub r0: f32,
pub r1: f32,
pub x1: f32,
pub y1: f32,
pub extend: GradientExtend,
variation_data: VariationData<'a>,
color_line: ColorLine<'a>,
}
Expand description
Fields§
§x0: f32
The x0
value.
y0: f32
The y0
value.
r0: f32
The r0
value.
r1: f32
The r1
value.
x1: f32
The x1
value.
y1: f32
The y1
value.
extend: GradientExtend
The extend.
variation_data: VariationData<'a>
§color_line: ColorLine<'a>
Implementations§
source§impl<'a> RadialGradient<'a>
impl<'a> RadialGradient<'a>
sourcepub fn stops<'b>(
&'b self,
palette: u16,
coords: &'a [NormalizedCoordinate],
) -> GradientStopsIter<'a, 'b> ⓘ
pub fn stops<'b>( &'b self, palette: u16, coords: &'a [NormalizedCoordinate], ) -> GradientStopsIter<'a, 'b> ⓘ
Returns an iterator over the stops of the radial gradient. Stops need to be sorted manually by the caller.
Trait Implementations§
source§impl<'a> Clone for RadialGradient<'a>
impl<'a> Clone for RadialGradient<'a>
source§fn clone(&self) -> RadialGradient<'a>
fn clone(&self) -> RadialGradient<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for RadialGradient<'a>
impl<'a> RefUnwindSafe for RadialGradient<'a>
impl<'a> Send for RadialGradient<'a>
impl<'a> Sync for RadialGradient<'a>
impl<'a> Unpin for RadialGradient<'a>
impl<'a> UnwindSafe for RadialGradient<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more