當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。