From bed9bba3759fab362e8cdc4bb9ea31e52030cc9d Mon Sep 17 00:00:00 2001 From: Weird Constructor Date: Mon, 8 Aug 2022 06:44:40 +0200 Subject: [PATCH] Credit the contribution --- CHANGELOG.md | 1 + README.md | 9 +++++---- src/lib.rs | 9 +++++---- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c58b22..ad79887 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,3 +16,4 @@ chains on the hexagonal Matrix. the scope handles for access to it's capture buffers. * Feature: Added WBlockDSP visual programming language utilizing the `synfx-dsp-jit` crate. * Change: Moved DSP code over to `synfx-dsp` crate. +* Feature: Added the `FormFM` node that was contributed by Dimas Leenman (aka Skythedragon). diff --git a/README.md b/README.md index 2366c6b..b75d916 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ And following DSP nodes: | Osc | BOsc | Basic bandlimited waveform oscillator (waveforms: Sin, Tri, Saw, Pulse/Square) | | Osc | VOsc | Vector phase shaping oscillator | | Osc | Noise | Noise oscillator | +| Osc | FormFM | Formant oscillator based on FM synthesis | | Signal | Amp | Amplifier/Attenuator | | Signal | SFilter | Simple collection of filters, useable for synthesis | | Signal | Delay | Single tap signal delay | @@ -174,10 +175,6 @@ Make sure to follow [Weird Constructors Mastodon account](https://mastodon.online/@weirdconstructor) or the releases of this project to be notified of updates. -#### Road Map / TODO List - -I have a pretty detailed TODO list in my private notebook. - ### Running the Jack Example: @@ -211,6 +208,10 @@ There exists an automate test suite for the DSP and backend code: * The ones you encounter and create as issues on GitHub. +### Credits + +- Dimas Leenman (aka Skythedragon) contributed the `FormFM` node. + ### Contributions I currently have a quite precise vision of what I want to achieve and my goal diff --git a/src/lib.rs b/src/lib.rs index 7a4ad7f..99ccd28 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,6 +42,7 @@ And following DSP nodes: | Osc | BOsc | Basic bandlimited waveform oscillator (waveforms: Sin, Tri, Saw, Pulse/Square) | | Osc | VOsc | Vector phase shaping oscillator | | Osc | Noise | Noise oscillator | +| Osc | FormFM | Formant oscillator based on FM synthesis | | Signal | Amp | Amplifier/Attenuator | | Signal | SFilter | Simple collection of filters, useable for synthesis | | Signal | Delay | Single tap signal delay | @@ -176,10 +177,6 @@ Make sure to follow [Weird Constructors Mastodon account](https://mastodon.online/@weirdconstructor) or the releases of this project to be notified of updates. -### Road Map / TODO List - -I have a pretty detailed TODO list in my private notebook. - ## Running the Jack Example: @@ -213,6 +210,10 @@ There exists an automate test suite for the DSP and backend code: * The ones you encounter and create as issues on GitHub. +## Credits + +- Dimas Leenman (aka Skythedragon) contributed the `FormFM` node. + ## Contributions I currently have a quite precise vision of what I want to achieve and my goal