meshtext 0.3.2

Generate vertex-vertex meshes from text.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Allows referencing one of the internal caches.
#[derive(Debug, Clone, Copy, Default)]
pub enum CacheType {
    /// The cache that handles non-indexed meshes.
    #[default]
    Normal,

    /// The cache that handles indexed meshes.
    Indexed,
}