Processing, 类SqrOsc
用法介绍。
构造函数
SqrOsc(parent)
参数
parent
通常使用"this"
说明
这是一个简单的方波振荡器。
例子
import processing.sound.*;
SqrOsc square;
void setup() {
size(640, 360);
background(255);
// Create square wave oscillator.
square = new SqrOsc(this);
square.play();
}
void draw() {
//the image is just for informative purposes
//on how the soundwave looks
}
方法
- SqrOsc.play()启动振荡器。
- SqrOsc.set()一次设置多个参数。
- SqrOsc.freq()以 Hz 为单位设置振荡器的频率。
- SqrOsc.amp()改变方形振荡器的振幅/音量。
- SqrOsc.add()按给定值偏移此生成器的输出。
- SqrOsc.pan()在立体全景中移动声音。
- SqrOsc.stop()停止振荡器。
相关用法
- Processing SqrOsc.freq()用法及代码示例
- Processing SqrOsc.stop()用法及代码示例
- Processing SqrOsc.play()用法及代码示例
- Processing SqrOsc.pan()用法及代码示例
- Processing SqrOsc.set()用法及代码示例
- Processing SqrOsc.add()用法及代码示例
- Processing SqrOsc.amp()用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing String用法及代码示例
- Processing StringList用法及代码示例
- Processing Sound.inputDevice()用法及代码示例
- Processing StringList.remove()用法及代码示例
- Processing SinOsc.freq()用法及代码示例
- Processing SoundFile.pan()用法及代码示例
- Processing Serial.readChar()用法及代码示例
- Processing SinOsc.pan()用法及代码示例
- Processing SPI.settings()用法及代码示例
- Processing StringDict用法及代码示例
- Processing SoundFile.cue()用法及代码示例
- Processing StringDict.keys()用法及代码示例
- Processing Serial.read()用法及代码示例
- Processing Serial.available()用法及代码示例
- Processing Serial.lastChar()用法及代码示例
- Processing StringDict.size()用法及代码示例
- Processing Serial.readStringUntil()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 SqrOsc。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。