vedasynth 0.0.3

A very simple synth library, very WIP but works for basic sine waves really easily.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod smooth_pitch;

use vedasynth::Tweenable;

fn main() {
    let mut tweenable = Tweenable::new(1.0);
    tweenable.tween_to(0.5, 0.1);
    println!("O={}", tweenable.current());
    for i in 0..11 {
        println!("V={}", tweenable.advance(0.01));
    }
    println!("O={}", tweenable.current());
}