Processing, 类SinOsc
中的stop()
用法介绍。
用法
.stop()
返回
void
说明
停止振荡器。
例子
import processing.sound.*;
SinOsc sine;
void setup() {
size(640, 360);
background(255);
// Create the sine oscillator
sine = new SinOsc(this);
sine.play();
}
void draw() {
}
void mousePressed() {
sine.stop();
}
相关用法
- Processing SinOsc.set()用法及代码示例
- Processing SinOsc.freq()用法及代码示例
- Processing SinOsc.pan()用法及代码示例
- Processing SinOsc.play()用法及代码示例
- Processing SinOsc.add()用法及代码示例
- Processing SinOsc.amp()用法及代码示例
- Processing SinOsc用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing String用法及代码示例
- Processing StringList用法及代码示例
- Processing Sound.inputDevice()用法及代码示例
- Processing StringList.remove()用法及代码示例
- Processing SoundFile.pan()用法及代码示例
- Processing Serial.readChar()用法及代码示例
- Processing SPI.settings()用法及代码示例
- Processing SqrOsc.freq()用法及代码示例
- Processing StringDict用法及代码示例
- Processing SoundFile.cue()用法及代码示例
- Processing StringDict.keys()用法及代码示例
- Processing Serial.read()用法及代码示例
- Processing Serial.available()用法及代码示例
- Processing Serial.lastChar()用法及代码示例
- Processing StringDict.size()用法及代码示例
- Processing Serial.readStringUntil()用法及代码示例
- Processing StringDict.hasKey()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 SinOsc.stop()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。