v-zufallszahl-ohne-seed

hio/nwt-gus-hi/v-zufallszahl-ohne-seed

No description
v-zufallszahl-ohne-seed
@/v-zufallszahl-ohne-seed
unteresLimitnumber
oberesLimitnumber
Updatepulse
v-zufallszahl-ohne-seed
unteresLimit
oberesLimit
Update
Zahl
Zahlnumber
To use the node in your project you should have the hio/nwt-gus-hi library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.

C++ implementation

node {
    void evaluate(Context ctx) {
        if (!isInputDirty<input_Update>(ctx))
        return;

        auto ll = getValue<input_unteresLimit>(ctx);
        auto ul = getValue<input_oberesLimit>(ctx);

        emitValue<output_Zahl>(ctx, random(ll,ul));


        
    }
}