[][src]Struct colourado::Color

pub struct Color {
    pub red: f32,
    pub green: f32,
    pub blue: f32,
}

A simple struct containing the three main color components of RGB color space. Colors are stored as f32 values ranging from 0.0 to 1.0

Fields

red: f32green: f32blue: f32

Methods

impl Color[src]

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

pub fn hsv_to_rgb(hue: f32, saturation: f32, value: f32) -> Color[src]

Convert HSV to RGB. Plain and simple

Trait Implementations

impl Clone for Color[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Color[src]

Auto Trait Implementations

impl Send for Color

impl Sync for Color

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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