free_crat 2.0.0

it is a little library for fast math calculation
Documentation
1
2
3
4
5
6
7
8
use free_crat::PrimaryColor;
use free_crat::mix;

fn main() {
    let red = PrimaryColor::Red;
    let yellow = PrimaryColor::Yellow;
    mix(red, yellow);
}