euphony-dsp 0.1.1

implementation of euphony's signal processing nodes
Documentation
---
source: euphony-dsp/src/unary.rs
assertion_line: 154
expression: node
---
Node {
    name: "Norm",
    module: [
        "unary",
    ],
    impl_path: "euphony_dsp::unary",
    id: 21,
    inputs: [
        Input {
            name: "input",
            id: 0,
            trigger: false,
            default: 0.0,
        },
    ],
    buffers: [],
    docs: " Normalizes a number.\n\n * `-0.0` will be converted into `0.0`\n * `NAN` will be converted into `0.0`\n * `INFINITY` will be converted into `MAX`\n * `NEG_INFINITY` will be converted into `MIN`\n",
}