procedural_modelling 0.4.2

A framework-agnostic Procedural Modelling crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module contains the backend-specific implementations

#[cfg(feature = "bevy")]
pub mod bevy;

#[cfg(feature = "wgpu")]
pub mod wgpu;

#[cfg(feature = "svg")]
pub mod svg;

#[cfg(feature = "nalgebra")]
pub mod nalgebra;