上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 32 下一页
  2025年10月31日
摘要: import("stdfaust.lib"); ctFreq = hslider("[0]cutoffFrequency",500,50,10000,0.01) hslider 的第一个参数是参数的名称,因为它将在界面中显示或在API中使用(它可以不同于与UI元素关联的变量的名称),下一个是默认值, 阅读全文
posted @ 2025-10-31 16:53 小沙盒工作室 阅读(4) 评论(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 小沙盒工作室 阅读(3) 评论(0) 推荐(0)
摘要: import("stdfaust.lib"); process = no.noise; stdfaust.lib 允许从一个点通过一系列环境访问所有Faust库。例如,我们在这里使用 no 环境,它代表 noise.lib 和 noise 函数(这是Faust的标准白噪声发生器)。Faust Lib 阅读全文
posted @ 2025-10-31 16:38 小沙盒工作室 阅读(7) 评论(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 小沙盒工作室 阅读(6) 评论(0) 推荐(0)
摘要: public class DawActivity extends AppCompatActivity { private AlertDialog mInstrumentAdderDialog; findViewById(R.id.channelRackAdd).setOnClickListener( 阅读全文
posted @ 2025-10-30 13:51 小沙盒工作室 阅读(8) 评论(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 小沙盒工作室 阅读(4) 评论(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 小沙盒工作室 阅读(4) 评论(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 小沙盒工作室 阅读(8) 评论(0) 推荐(0)
  2025年10月23日
摘要: var grid = fenzi/ fenmu * number // 4/4拍 1/16吸附(最小网格时值单位) grid = 4/4*16 = 16 // 3/4拍 1/16吸附(最小网格时值单位) grid = 3/4*16=12 针对三连音的特殊处理 if(snapDanwei == 3 | 阅读全文
posted @ 2025-10-23 17:04 小沙盒工作室 阅读(6) 评论(0) 推荐(0)
摘要: 找到siderbar 导航栏 资源导航 * [[gts游戏]] * [[gts小说]] * [[gts漫画]] * [[gts音声]] 攻略教程 * [[gts游戏疑难杂症]] * [[gts游戏攻略]] 阅读全文
posted @ 2025-10-23 09:53 小沙盒工作室 阅读(14) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 32 下一页