上一页 1 2 3 4 5 6 ··· 23 下一页
  2025年11月4日
摘要: import("stdfaust.lib"); en = library("envelopes.lib"); a = hslider("a[style:knob]",0,0,2,1); d = hslider("d[style:knob]",0,0,2,1); s = hslider("s[styl 阅读全文
posted @ 2025-11-04 10:29 小沙盒工作室 阅读(3) 评论(0) 推荐(0)
  2025年11月3日
摘要: // 检测GET变量是否存在 if (isset($_GET['writer'])) { // 变量存在 $writer = $_GET['writer']; } else { // 变量不存在 $writer = ''; } // 检测GET变量是否存在且有值(不是空字符串、0、null等) if 阅读全文
posted @ 2025-11-03 12:47 小沙盒工作室 阅读(6) 评论(0) 推荐(0)
摘要: <?php // viewer.php - 小说目录文件列表查看器 if (!isset($_GET['novel']) || empty($_GET['novel'])) { die('无效的小说名称'); } $novelName = $_GET['novel']; $novelDir = "小 阅读全文
posted @ 2025-11-03 12:02 小沙盒工作室 阅读(5) 评论(0) 推荐(0)
  2025年11月1日
摘要: 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 阅读全文
posted @ 2025-11-01 15:55 小沙盒工作室 阅读(5) 评论(1) 推荐(0)
摘要: import("stdfaust.lib"); // 1. 创建波形选择器(下拉菜单样式) waveSelector = vslider("Waveform[style:menu{'Sine':0,'Triangle':1,'Sawtooth':2,'Square':3}]", 0, 0, 3, 1 阅读全文
posted @ 2025-11-01 15:39 小沙盒工作室 阅读(3) 评论(0) 推荐(0)
摘要: https://faustlibraries.grame.fr/libs/spats/#sppanner import("stdfaust.lib"); osc1 = hgroup("osc1",os.osc(440) :sp.panner(osc1_pan)); process = osc1 : 阅读全文
posted @ 2025-11-01 13:09 小沙盒工作室 阅读(2) 评论(0) 推荐(0)
摘要: ,并行输出2个信号,如 osc1,osc2 https://faustdoc.grame.fr/manual/syntax/#expressions :顺序组合,表示安装串联电路一样的处理方式 阅读全文
posted @ 2025-11-01 12:51 小沙盒工作室 阅读(3) 评论(0) 推荐(0)
摘要: hgroup("label",x) hgroup Primitive The hgroup primitive implements a horizontal group. A group contains other UI elements that can also be groups. hgr 阅读全文
posted @ 2025-11-01 10:58 小沙盒工作室 阅读(3) 评论(0) 推荐(0)
摘要: amount = hslider("[0]Amount[style:knob]", 0., 0., 1., .001); 关键就是后面的[style:knob]格式。 phase = hslider("[2]Phase[style:knob][unit:°]", 180., 0., 360., 15 阅读全文
posted @ 2025-11-01 10:38 小沙盒工作室 阅读(5) 评论(0) 推荐(0)
  2025年10月31日
摘要: 频率倍数 = 2^(coarse/12) 阅读全文
posted @ 2025-10-31 19:18 小沙盒工作室 阅读(1) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 23 下一页