viewport-lib 0.15.0

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