siege-color 0.4.0

Color management library for the Siege Engine
Documentation
1
2
3
4
5
6
7
8
9
10

use siege_math::Vec2;

/// Chromaticity points specified in CIE 1931 XYZ space
pub struct Chromaticity {
    pub red: Vec2<f32>,
    pub green: Vec2<f32>,
    pub blue: Vec2<f32>,
    pub white: Vec2<f32>,
}