bevy_procedural_meshes/
lib.rs

1#![allow(dead_code)]
2
3//! ## Bevy Procedural: Meshes
4//! [![crates.io](https://img.shields.io/crates/v/bevy_procedural_meshes)](https://crates.io/crates/bevy_procedural_meshes)
5//! [![GitHub Repo stars](https://img.shields.io/github/stars/bevy-procedural/meshes)](https://github.com/bevy-procedural/meshes)
6//! This crate provides a set of procedural mesh generation tools for Bevy.
7
8mod index_type;
9mod mesh;
10pub use index_type::IndexType;
11pub use mesh::*;