own_art 0.1.0

An art library
Documentation
1
2
3
4
5
6
7
8
9
use own_art::{mix, PrimaryColor};

fn main() {
    let color1 = PrimaryColor::Red;
    let color2 = PrimaryColor::Red;

    let color3 = mix(color1, color2);
    println!("{:?}", color3);
}