weyundong 0.1.0

cargo publish test
Documentation
1
2
3
4
5
6
7
use crate::kinds::*;

/// Combines two primary colors in equal amounts to create
/// a secondary color.
pub fn mix(c1: PrimaryColor, c2: PrimaryColor) -> SecondaryColor {
    SecondaryColor::Orange
}