ling-audio 2030.0.3

4D positional audio synthesis and WAV BGM for Ling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! ling-audio — 4D positional audio synthesis and WAV BGM.
//!
//! Primary entry point: [`AudioEngine`].  Create one instance at startup,
//! feed it [`ToneParams`] via [`AudioEngine::set_tone`], update the listener
//! orientation each frame with [`AudioEngine::set_listener`], and optionally
//! load a WAV background track with [`AudioEngine::load_bgm`].

pub mod engine;
pub mod fft;

pub use engine::{AudioEngine, ToneParams, Wave};
pub use fft::{FftAnalyzer, CosPalette, Window, freq_texture, waveform_texture};