yunter 0.1.0

convert from one color-space to another
Documentation
  • Coverage
  • 0%
    0 out of 9 items documented0 out of 0 items with examples
  • Size
  • Source code size: 14.13 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 585.04 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Kerollmops

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();