audionimbus 0.13.0

A safe wrapper around Steam Audio that provides spatial audio capabilities with realistic occlusion, reverb, and HRTF effects, accounting for physical attributes and scene geometry.
Documentation
//! Ambisonics encoding, decoding, and processing effects.

pub mod encode;
pub use encode::*;

pub mod decode;
pub use decode::*;

pub mod panning;
pub use panning::*;

pub mod binaural;
pub use binaural::*;

pub mod rotation;
pub use rotation::*;

mod speaker_layout;
pub use speaker_layout::SpeakerLayout;

mod r#type;
pub use r#type::AmbisonicsType;