摘要:
import("stdfaust.lib"); waveSelector = vslider("WaveShapes[style:menu{'Sin':0;'Tri':1,'Saw':2,'Square':3}]",0,0,4,1); freq = hslider("Freq",20,20,2000
阅读全文
摘要:
import("stdfaust.lib"); // 1. 创建波形选择器(下拉菜单样式) waveSelector = vslider("Waveform[style:menu{'Sine':0,'Triangle':1,'Sawtooth':2,'Square':3}]", 0, 0, 3, 1
阅读全文
摘要:
https://faustlibraries.grame.fr/libs/spats/#sppanner import("stdfaust.lib"); osc1 = hgroup("osc1",os.osc(440) :sp.panner(osc1_pan)); process = osc1 :
阅读全文
摘要:
,并行输出2个信号,如 osc1,osc2 https://faustdoc.grame.fr/manual/syntax/#expressions :顺序组合,表示安装串联电路一样的处理方式
阅读全文
摘要:
hgroup("label",x) hgroup Primitive The hgroup primitive implements a horizontal group. A group contains other UI elements that can also be groups. hgr
阅读全文
摘要:
amount = hslider("[0]Amount[style:knob]", 0., 0., 1., .001); 关键就是后面的[style:knob]格式。 phase = hslider("[2]Phase[style:knob][unit:°]", 180., 0., 360., 15
阅读全文