matcat 0.2.0

Material Categories & Variants — human-friendly layer on top of utomid chemistry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # matcat
//!
//! A compact material catalog system.
//!
//! Materials are identified by a 5-byte code (`MatCatId`) and deterministically
//! expanded into full property sets (`MatProps`) using procedural generation.
//!
//! Public API is kept flat: just `use matcat::...`.

pub mod materials;

pub use materials::{
    MatCatId,
    MatProps,
    props_for,
    find_closest_material,
};