11 releases (5 stable)
1.4.0 | Jan 17, 2024 |
---|---|
1.3.0 | May 22, 2023 |
1.2.1 | Mar 22, 2023 |
1.2.0 | Oct 22, 2022 |
1.0.0-alpha.3 | Jan 15, 2022 |
#784 in Audio
112 downloads per month
Used in 15 crates
(6 directly)
35KB
556 lines
augmented_oscillator
Very simple implementation of an oscillator.
Examples
Sine oscillator
let sample_rate = 44100.0;
let mut osc = augmented_oscillator::Oscillator::sine(sample_rate);
osc.set_frequency(40.0); // set freq. in Hz
let _sample = osc.next_sample(); // tick the oscillator forward
Wave-table oscillator
use augmented_oscillator::{Oscillator, wavetable::WaveTableOscillator};
let sample_rate = 44100.0;
// let mut osc = WaveTableOscillator::new(vec![/* your wave table data */]);
// You can either ^^^^ provide your own table (and update it at runtime) or generate a table
// of a certain length (100 sample here) from a function oscillator
let mut osc = WaveTableOscillator::from_oscillator(Oscillator::sine(sample_rate), 100);
osc.set_frequency(40.0); // set freq. in Hz
let _sample = osc.next_sample(); // tick the oscillator forward
Custom oscillator generator function
let sample_rate = 44100.0;
let mut osc = augmented_oscillator::Oscillator::new_with_sample_rate(
sample_rate,
move |phase: f32| phase.sin()
);
osc.set_frequency(40.0); // set freq. in Hz
let _sample = osc.next_sample(); // tick the oscillator forward
License: MIT
Dependencies
~0.4–1MB
~23K SLoC