Struct palette::blend::Equations[][src]

pub struct Equations {
    pub color_equation: Equation,
    pub alpha_equation: Equation,
    pub color_parameters: Parameters,
    pub alpha_parameters: Parameters,
}

A pair of blending equations and corresponding parameters.

The Equations type is similar to how blending works in OpenGL, where a blend function has can be written as e(sp * S, dp * D). e is the equation (like s + d), sp and dp are the source and destination parameters, and S and D are the source and destination colors.

Fields

color_equation: Equation

The equation for the color components.

alpha_equation: Equation

The equation for the alpha component.

color_parameters: Parameters

The parameters for the color components.

alpha_parameters: Parameters

The parameters for the alpha component.

Implementations

impl Equations[src]

pub fn from_equations(color: Equation, alpha: Equation) -> Equations[src]

Create a pair of blending equations, where all the parameters are One.

pub fn from_parameters(source: Parameter, destination: Parameter) -> Equations[src]

Create a pair of additive blending equations with the provided parameters.

Trait Implementations

impl<C: Blend<Color = C> + ComponentWise + Clone> BlendFunction<C> for Equations where
    C::Scalar: Float
[src]

impl Clone for Equations[src]

impl Debug for Equations[src]

impl PartialEq<Equations> for Equations[src]

impl Copy for Equations[src]

impl Eq for Equations[src]

impl StructuralEq for Equations[src]

impl StructuralPartialEq for Equations[src]

Auto Trait Implementations

impl RefUnwindSafe for Equations

impl Send for Equations

impl Sync for Equations

impl Unpin for Equations

impl UnwindSafe for Equations

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: FloatComponent,
    Swp: WhitePoint,
    Dwp: WhitePoint,
    D: AdaptFrom<S, Swp, Dwp, T>, 
[src]

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, U> IntoColor<U> for T where
    U: FromColor<T>, 
[src]

impl<T, U> IntoColorUnclamped<U> for T where
    U: FromColorUnclamped<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<T, U> TryIntoColor<U> for T where
    U: TryFromColor<T>, 
[src]