Struct nannou::color::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> BlendFunction<C> for Equations where
    C: Blend<Color = C> + ComponentWise + Clone,
    <C as ComponentWise>::Scalar: Float
[src]

impl Clone for Equations[src]

impl Copy for Equations[src]

impl Debug for Equations[src]

impl Eq for Equations[src]

impl PartialEq<Equations> for Equations[src]

impl StructuralEq for Equations[src]

impl StructuralPartialEq for Equations[src]

Auto Trait Implementations

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: Component + Float,
    D: AdaptFrom<S, Swp, Dwp, T>,
    Swp: WhitePoint,
    Dwp: WhitePoint
[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, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Downcast<T> for T

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SetParameter for T

impl<T> Style for T where
    T: Any + Debug + PartialEq<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> Upcast<T> for T

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