Trait graphics::Colored

source ·
pub trait Colored: Sized {
    // Required methods
    fn mul_rgba(
        self,
        r: ColorComponent,
        g: ColorComponent,
        b: ColorComponent,
        a: ColorComponent
    ) -> Self;
    fn hue_rad(self, angle: ColorComponent) -> Self;

    // Provided methods
    fn tint(self, f: ColorComponent) -> Self { ... }
    fn shade(self, f: ColorComponent) -> Self { ... }
    fn hue_deg(self, angle: ColorComponent) -> Self { ... }
}
Expand description

Implemented by contexts that contains color.

Required Methods§

source

fn mul_rgba( self, r: ColorComponent, g: ColorComponent, b: ColorComponent, a: ColorComponent ) -> Self

Multiplies with red, green, blue and alpha values.

source

fn hue_rad(self, angle: ColorComponent) -> Self

Rotates hue by radians.

Provided Methods§

source

fn tint(self, f: ColorComponent) -> Self

Mixes the current color with white.

0 is black and 1 is white.

source

fn shade(self, f: ColorComponent) -> Self

Mixes the current color with black.

0 is white and 1 is black.

source

fn hue_deg(self, angle: ColorComponent) -> Self

Rotates hue by degrees.

Implementors§