colortemp 0.1.0

Simple functions to calculate color temperatures and RGB values
Documentation
1
2
3
4
5
6
7
8
9
10
# colortemp.rs

Simple functions to calculate color temperatures and RGB values.

```rust
extern crate colortemp;

let mut rgb = colortemp::temp_to_rgb(2000);
println!("{:?}", rgb);
```