procedural_modelling 0.4.2

A framework-agnostic Procedural Modelling crate.
Documentation
//! This module contains the bevy-specific implementations

mod math;
mod mesh2d;
mod mesh3d;
mod vertex_payload_2d;
mod vertex_payload_3d;

pub use math::*;
pub use mesh2d::*;
pub use mesh3d::*;
pub use vertex_payload_2d::*;
pub use vertex_payload_3d::*;

#[cfg(feature = "gizmo")]
mod gizmo;

#[cfg(feature = "gizmo")]
pub use gizmo::*;