当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing Pulse用法及代码示例


Processing, 类Pulse用法介绍。

构造函数

  • Pulse(parent)

参数

  • parent 通常使用"this"

说明

这是一个简单的脉冲振荡器。

例子

import processing.sound.*;
Pulse pulse;

void setup() {
  size(640, 360);
  background(255);
    
  // Create and start the sine oscillator.
  pulse = new Pulse(this);
    
  //Start the Pulse Oscillator. 
  pulse.play();
}

void draw() {
	//the image is just for informative purposes
	//on how the soundwave looks
}

Image output for example 1

方法

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 Pulse。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。