| Crates.io | woodblocks |
| lib.rs | woodblocks |
| version | 1.0.0 |
| created_at | 2021-03-28 20:16:16.466279+00 |
| updated_at | 2021-03-28 22:14:20.134711+00 |
| description | Recursive data structures to represent audio or music. |
| homepage | |
| repository | |
| max_upload_size | |
| id | 374795 |
| size | 6,127 |
Recursive data structures for representing audio or music.
Basic Example:
use woodblocks::*;
use woodblocks::Block::*;
use woodblocks::IsAbsolute::*;
fn main() {
let samples = render(Ins(sin_func));
write_to_wave(&samples, &"sine.wav".to_string());
}