wavecraft_processors/lib.rs
1//! Reusable processors for Wavecraft plugins.
2
3mod oscillator;
4mod oscilloscope;
5
6pub use oscillator::{Oscillator, OscillatorParams, Waveform, generate_waveform_sample};
7pub use oscilloscope::{
8 OSCILLOSCOPE_FRAME_POINTS, OscilloscopeFrameConsumer, OscilloscopeFrameProducer,
9 OscilloscopeFrameSnapshot, OscilloscopeTap, create_oscilloscope_channel,
10};