fundsp 0.23.0

Audio processing and synthesis library.
1
2
3
4
5
6
7
8
9
10
11
//! Show display method output.
use fundsp::prelude64::*;

fn main() {
    let mut node = lowpass_hz(1000.0, 0.5);

    print!("Filter: lowpass_hz(1000.0, 0.5)\n\n");

    // The display method prints an ASCII oscilloscope and other information about the node.
    print!("{}", node.display());
}