enginerenderer 0.0.1

A zero-dependency offline rendering engine in pure Rust — CPU path tracing, BVH acceleration, 16-band spectral rendering, PBR materials, animation & video export.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Heuristic AI manager used to derive runtime directives.
pub mod ai_manager;
/// Capability discovery exposed to AI clients.
pub mod capabilities;
/// Prompt-to-scene conversion helpers.
pub mod prompt;
/// AI rendering facade.
pub mod renderer;

/// Public AI renderer entry point.
pub use self::renderer::AiRenderer;