mirror of
https://github.com/gnu4cn/rust-lang-zh_CN.git
synced 2025-03-16 04:10:30 +08:00
11 lines
197 B
Rust
11 lines
197 B
Rust
//! # art - 美术
|
|
//!
|
|
//! 建模诸多美术概念的一个库。
|
|
|
|
pub mod kinds;
|
|
pub mod utils;
|
|
|
|
pub use self::kinds::PrimaryColor;
|
|
pub use self::kinds::SecondaryColor;
|
|
pub use self::utils::mix;
|