test_001_art 0.1.0

A simple drawing library for Rust
Documentation
1
2
3
4
5
6
7
8
use test_001_art::PrimaryColor;
use test_001_art::mix;

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