dark_luzio_art 0.1.0

A library for modeling artistic concepts.
Documentation
1
2
3
4
5
6
7
8
use dark_luzio_art::{mix, PrimaryColor, SecondaryColor};

fn main() {
    let red = PrimaryColor::Red;
    let yellow = PrimaryColor::Yellow;
    let orange = mix(red, yellow);
    println!("Orange: {:?}", orange);
}