scenix 0.3.0

Facade crate for the scenix Geometry APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(not(feature = "std"), no_std)]

//! Facade crate for scenix Geometry APIs.
//!
//! This release re-exports the Foundation crates, the GPU-free scene graph, and
//! with the default `mesh` feature, CPU-side geometry and mesh primitives.

pub use scenix_core::*;
pub use scenix_input::*;
pub use scenix_math::*;

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

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