prisma 0.1.1

A color library for both simple and complex color manipulation, intending to be the go to rust color library for most tasks. It can handle conversion between a large number of color models, and can convert into the CIE device independent color spaces. Prisma tries to be easy to use while encouraging correct transformations, making mathematically correct conversions easy without knowing the whole field of color science.
Documentation
1
2
3
4
5
6
7
8
9
//! Common data for testing

pub mod hwb_test_data;
pub mod rgb_hs_test_data;

pub use self::hwb_test_data::build_test_data as build_hwb_test_data;
pub use self::hwb_test_data::TestColor as HwbTestColor;
pub use self::rgb_hs_test_data::make_test_array as build_hs_test_data;
pub use self::rgb_hs_test_data::TestColor as HsTestColor;