//! CPU raytracer for All is Cubes content.
//!
//! While not fast enough for serious interactive use,
//! this raytracer serves as the reference implementation of rendering.
//! Some of its components are also used in areas like computing derived properties of blocks.
//! It may also be used for visual output in tests via [`print_space()`].
// As a workaround for <https://github.com/rust-lang/rust/issues/127445>,
// we list all items explicitly even though glob re-exports would be closer
// to the intent here.
pub use print_space;
// TODO: consider renamings of *Raytracer* items
pub use ;
pub use ;
// experimental/internal, used only by test-renderers right now
pub use DepthBuf;