Processing, 類Pulse
中的width()
用法介紹。
用法
.width(width)
參數
width
(float)
振蕩器的相對脈衝寬度為 0.0 和 1.0 之間的浮點值(不包括)
返回
void
說明
改變脈衝振蕩器的脈衝寬度。允許的值介於 0.0 和 1.0 之間。
例子
import processing.sound.*;
Pulse pulse;
void setup() {
size(640, 360);
background(255);
// Create the pulse oscillator
pulse = new Pulse(this);
pulse.play();
pulse.width(0.8);
}
void draw() {
}
相關用法
- Processing Pulse.stop()用法及代碼示例
- Processing Pulse.add()用法及代碼示例
- Processing Pulse.set()用法及代碼示例
- Processing Pulse.freq()用法及代碼示例
- Processing Pulse.amp()用法及代碼示例
- Processing Pulse.pan()用法及代碼示例
- Processing Pulse.play()用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
- Processing PVector.set()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing PImage.pixels[]用法及代碼示例
- Processing PVector.mag()用法及代碼示例
- Processing PWM.set()用法及代碼示例
- Processing PVector.normalize()用法及代碼示例
- Processing PVector.limit()用法及代碼示例
- Processing PShape用法及代碼示例
- Processing PImage.resize()用法及代碼示例
- Processing PFont.list()用法及代碼示例
- Processing PVector.div()用法及代碼示例
- Processing PVector.cross()用法及代碼示例
- Processing PShape.setStroke()用法及代碼示例
- Processing PVector.random2D()用法及代碼示例
- Processing PImage.width用法及代碼示例
- Processing PShape.addChild()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 Pulse.width()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。