//! Neural Radiance Fields (NeRF) and Instant-NGP.
//!
//! This module implements:
//!
//! - **Positional encoding** – Fourier feature encoding (Mildenhall et al. 2020).
//! - **NeRF MLP** – the standard 8-layer geometry + 2-layer radiance network.
//! - **Volume rendering** – discrete volume rendering integral, stratified
//! sampling, and hierarchical (importance) sampling.
//! - **Hash encoding** – Instant-NGP multi-resolution hash grid (Müller et al. 2022)
//! together with a tiny 2-layer MLP.
//!
//! ## References
//!
//! - Mildenhall, B. et al. (2020). "NeRF: Representing Scenes as Neural Radiance
//! Fields for View Synthesis". ECCV 2020.
//! - Müller, T. et al. (2022). "Instant Neural Graphics Primitives with a
//! Multiresolution Hash Encoding". SIGGRAPH 2022.
// ── Convenience re-exports ────────────────────────────────────────────────
pub use ;
pub use NerfMlp;
pub use ;
pub use ;
pub use ;