Hey Stéphane,
i use faust2jacqt for the moment on linux.
please have a look at the attached example. i had something in mind like
to filter the output of a slider primitive according to a calculation
like i do in "checkSlider(x)" and output the results via vbargraph in
numerical style. now i'd like to get rid of the native numerical display
of the vslider primitive. is there a way?
thanks! :-)
Am 25.12.19 um 11:37 schrieb Stéphane Letz:
Not sure to fully understand:
- what script are you using and on what platform?
- can you send the DSP source code ?
Stéphane
Le 25 déc. 2019 à 11:05, toxonic <toxo...@toxonic.net> a écrit :
first of all: merry christmas to you all! :-) hope, you will have some calm and
relaxing days with your loved ones!
just a quick question: is it possible to hide the numerical part of a vslider?
i want to use a vbargraph with [style:numerical] to display the values of a
vslider after some custom calculations.
thanks in advance! :-)
_______________________________________________
Faudiostream-users mailing list
Faudiostream-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-users
import("stdfaust.lib");
slider = vslider("[0]test[scale:log]",1,1,128,0.001):int/4;
display = _<:attach(_,vbargraph("[1]notlength 1/x[style:numerical]", 0 ,128));
xByTwo(x) =ba.if (x<6, x/2 == (x/2:int), x/8 == (x/8:int));
xByThree(x) = ba.if (x<6,x/3 == (x/3:int), x/6==(x/6:int));
oneByX(x) = (1/x == (1/x:int));
checkSlider(x) = xByTwo(x), xByThree(x), oneByX(x):>_;
process = ba.latch(slider:checkSlider, slider):display:/(1,_):si.smoo;
_______________________________________________
Faudiostream-users mailing list
Faudiostream-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-users