Struct epaint::Hsva

source ·
pub struct Hsva {
    pub h: f32,
    pub s: f32,
    pub v: f32,
    pub a: f32,
}
Expand description

Hue, saturation, value, alpha. All in the range [0, 1]. No premultiplied alpha.

Fields§

§h: f32

hue 0-1

§s: f32

saturation 0-1

§v: f32

value 0-1

§a: f32

alpha 0-1. A negative value signifies an additive color (and alpha is ignored).

Implementations§

source§

impl Hsva

source

pub fn new(h: f32, s: f32, v: f32, a: f32) -> Hsva

source

pub fn from_srgba_premultiplied(srgba: [u8; 4]) -> Hsva

From sRGBA with premultiplied alpha

source

pub fn from_srgba_unmultiplied(srgba: [u8; 4]) -> Hsva

From sRGBA without premultiplied alpha

source

pub fn from_rgba_premultiplied(r: f32, g: f32, b: f32, a: f32) -> Hsva

From linear RGBA with premultiplied alpha

source

pub fn from_rgba_unmultiplied(r: f32, g: f32, b: f32, a: f32) -> Hsva

From linear RGBA without premultiplied alpha

source

pub fn from_additive_rgb(rgb: [f32; 3]) -> Hsva

source

pub fn from_rgb(rgb: [f32; 3]) -> Hsva

source

pub fn from_srgb(_: [u8; 3]) -> Hsva

source

pub fn to_opaque(self) -> Hsva

source

pub fn to_rgb(&self) -> [f32; 3]

source

pub fn to_srgb(&self) -> [u8; 3]

source

pub fn to_rgba_premultiplied(&self) -> [f32; 4]

source

pub fn to_rgba_unmultiplied(&self) -> [f32; 4]

Represents additive colors using a negative alpha.

source

pub fn to_srgba_premultiplied(&self) -> [u8; 4]

source

pub fn to_srgba_unmultiplied(&self) -> [u8; 4]

Trait Implementations§

source§

impl Clone for Hsva

source§

fn clone(&self) -> Hsva

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl ColorInterop for Hsva

§

type CintTy = Alpha<Hsv<f32>>

§

fn from_cint(col: Self::CintTy) -> Self

Convert self into its canonical cint type.
§

fn into_cint(self) -> Self::CintTy

Create a Self from its canonical cint type.
source§

impl Debug for Hsva

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Hsva

source§

fn default() -> Hsva

Returns the “default value” for a type. Read more
source§

impl From<Alpha<Hsv<f32>>> for Hsva

source§

fn from(srgba: Alpha<Hsv<f32>>) -> Hsva

Converts to this type from the input type.
source§

impl From<Color32> for Hsva

source§

fn from(srgba: Color32) -> Hsva

Converts to this type from the input type.
source§

impl From<Hsva> for Color32

source§

fn from(hsva: Hsva) -> Color32

Converts to this type from the input type.
source§

impl From<Hsva> for HsvaGamma

source§

fn from(hsva: Hsva) -> HsvaGamma

Converts to this type from the input type.
source§

impl From<Hsva> for Rgba

source§

fn from(hsva: Hsva) -> Rgba

Converts to this type from the input type.
source§

impl From<HsvaGamma> for Hsva

source§

fn from(hsvag: HsvaGamma) -> Hsva

Converts to this type from the input type.
source§

impl From<Rgba> for Hsva

source§

fn from(rgba: Rgba) -> Hsva

Converts to this type from the input type.
source§

impl PartialEq<Hsva> for Hsva

source§

fn eq(&self, other: &Hsva) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Hsva

source§

impl StructuralPartialEq for Hsva

Auto Trait Implementations§

§

impl RefUnwindSafe for Hsva

§

impl Send for Hsva

§

impl Sync for Hsva

§

impl Unpin for Hsva

§

impl UnwindSafe for Hsva

Blanket Implementations§

source§

impl<T> Any for Twhere
T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere
U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere
T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere
U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.