上一页 1 2 3 4 5 6 7 ··· 23 下一页
  2025年10月31日
摘要: import("stdfaust.lib"); process = os.osc(440); 阅读全文
posted @ 2025-10-31 17:57 小沙盒工作室 阅读(3) 评论(0) 推荐(0)
摘要: import("stdfaust.lib"); ctFreq = hslider("[0]cutoffFrequency",500,50,10000,0.01) : si.smoo; q = hslider("[1]q",5,1,30,0.1) : si.smoo; gain = hslider(" 阅读全文
posted @ 2025-10-31 17:50 小沙盒工作室 阅读(1) 评论(0) 推荐(0)
摘要: import("stdfaust.lib"); ctFreq = hslider("[0]cutoffFrequency",500,50,10000,0.01) hslider 的第一个参数是参数的名称,因为它将在界面中显示或在API中使用(它可以不同于与UI元素关联的变量的名称),下一个是默认值, 阅读全文
posted @ 2025-10-31 16:53 小沙盒工作室 阅读(1) 评论(0) 推荐(0)
摘要: import("stdfaust.lib"); ctFreq = 500; q = 5; gain = 1; process = no.noise : fi.resonlp(ctFreq,q,gain); 现在,我们将使用Faust顺序组合运算符将噪声发生器连接到谐振低通滤波器( fi.resonl 阅读全文
posted @ 2025-10-31 16:44 小沙盒工作室 阅读(2) 评论(0) 推荐(0)
摘要: import("stdfaust.lib"); process = no.noise; stdfaust.lib 允许从一个点通过一系列环境访问所有Faust库。例如,我们在这里使用 no 环境,它代表 noise.lib 和 noise 函数(这是Faust的标准白噪声发生器)。Faust Lib 阅读全文
posted @ 2025-10-31 16:38 小沙盒工作室 阅读(3) 评论(0) 推荐(0)
  2025年10月30日
摘要: function render(url,id) { const div = document.getElementById(id) var request = new XMLHttpRequest() request.open("get",url) request.send() var data = 阅读全文
posted @ 2025-10-30 18:51 小沙盒工作室 阅读(4) 评论(0) 推荐(0)
摘要: public class DawActivity extends AppCompatActivity { private AlertDialog mInstrumentAdderDialog; findViewById(R.id.channelRackAdd).setOnClickListener( 阅读全文
posted @ 2025-10-30 13:51 小沙盒工作室 阅读(4) 评论(0) 推荐(0)
  2025年10月29日
摘要: int colors[][] = { {0,0,0}, {127, 127, 127}, }; public void setColor() { for(int i=0;i<128;i++) { color = Color.rgb(colors[i][0],color[i][1],colors[i] 阅读全文
posted @ 2025-10-29 12:11 小沙盒工作室 阅读(3) 评论(0) 推荐(0)
  2025年10月26日
摘要: 核心api Button.setBackgroundTintList(ColorStateList); void initPatterns(LinearLayout PatternsRoot) { for(int i=0;i<512;i++) { Button patternButton = new 阅读全文
posted @ 2025-10-26 11:09 小沙盒工作室 阅读(3) 评论(0) 推荐(0)
  2025年10月25日
摘要: void initPatterns(LinearLayout PatternsRoot) { for(int i=0;i<512;i++) { Button patternButton = new Button(PianoRollActivity.this); patternButton.setTe 阅读全文
posted @ 2025-10-25 12:44 小沙盒工作室 阅读(6) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 23 下一页