1 个不稳定版本
使用旧的Rust 2015
0.1.0 | 2017年12月6日 |
---|
在#temperature中排名第81
5KB
94 行
colortemp.rs
用于计算色温和RGB值的简单函数。
extern crate colortemp;
let mut rgb = colortemp::temp_to_rgb(2000);
println!("{:?}", rgb);
lib.rs
:
一个简单的crate,用于计算色温
它实现了一个由Tanner Helland提出的算法,用于计算特定色温的RGB值。它还可以通过近似进行逆运算。
这个crate包括单元测试,以确保其功能
示例
以下是一些如何使用此crate的简单示例
extern crate colortemp;
let mut rgb = colortemp::temp_to_rgb(2000);
println!("{:?}", rgb);
此crate生成的值可能包含不确定性,因此可能不适合科学计算。
如果您想更改这一点,PR总是受欢迎 😁