yunter

Crates.ioyunter
lib.rsyunter
version0.1.0
sourcesrc
created_at2018-04-14 12:36:00.678022
updated_at2018-04-14 12:36:00.678022
descriptionconvert from one color-space to another
homepagehttps://github.com/vente-privee/yunter
repository
max_upload_size
id60557
size14,133
LV2 Maintainers (github:rustaudio:lv2-maintainers)

documentation

https://docs.rs/yunter

README

yunter

A Rust library to convert from one color-space to another.

Documentation can be found on http://docs.rs/yunter.

Origin of the name

yunter is named after Thomas Young and Richard S. Hunter, who worked on colour theory and the Hunter Lab color space.

Examples

extern crate yunter;

let rgb = Rgb::new(176, 57, 209);

let xyz: Xyz = rgb.into();

let lab: Lab = rgb.into();
Commit count: 0

cargo fmt