⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 beatlistener.pde

📁 This is processing for java examples.
💻 PDE
字号:
class BeatListener implements AudioListener{  private BeatDetect beat;  private AudioPlayer source;    BeatListener(BeatDetect beat, AudioPlayer source)  {    this.source = source;    this.source.addListener(this);    this.beat = beat;  }    void samples(float[] samps)  {    beat.detect(source.mix);  }    void samples(float[] sampsL, float[] sampsR)  {    beat.detect(source.mix);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -