[][src]Struct blush::ColorScale

pub struct ColorScale { /* fields omitted */ }

The representation of a color scale. The first ColorStop (position 0.0) defines the left end color. The last ColorStop (position 1.0) defines the right end color.

Implementations

impl ColorScale[src]

pub fn empty() -> Self[src]

Create an empty ColorScale.

pub fn add_stop(&mut self, color: Color, position: Fraction) -> &mut Self[src]

Add a Color at the given position.

pub fn sample(
    &self,
    position: Fraction,
    mix: &dyn Fn(&Color, &Color, Fraction) -> Color
) -> Option<Color>
[src]

Get the color at the given position using the mixing function.

Note:

  • No color is returned if position isn't between two color stops or the ColorScale is empty.

Trait Implementations

impl Clone for ColorScale[src]

impl Debug for ColorScale[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,