wavecraft-processors 0.12.29

Reusable processors for Wavecraft plugins
Documentation
1
2
3
4
5
6
7
8
9
10
//! Reusable processors for Wavecraft plugins.

mod oscillator;
mod oscilloscope;

pub use oscillator::{Oscillator, OscillatorParams, Waveform, generate_waveform_sample};
pub use oscilloscope::{
    OSCILLOSCOPE_FRAME_POINTS, OscilloscopeFrameConsumer, OscilloscopeFrameProducer,
    OscilloscopeFrameSnapshot, OscilloscopeTap, create_oscilloscope_channel,
};