viewport-lib 0.2.1

3D viewport rendering library
Documentation
1
2
3
4
5
6
7
8
9
/// Scene graph with parent-child hierarchy and layers.
pub mod scene;
pub use scene::{Group, GroupId, Layer, LayerId, Scene, SceneNode};
/// Axis-aligned bounding box.
pub mod aabb;
/// Per-object material parameters (color, shading, textures).
pub mod material;
/// Core `ViewportObject` trait and render mode types.
pub mod traits;