mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
updated docs
This commit is contained in:
parent
8473a26bf0
commit
2f027cfd50
2 changed files with 3 additions and 4 deletions
|
@ -1,13 +1,12 @@
|
|||
define(["Tone/core/Tone", "Tone/signal/Threshold", "Tone/signal/Negate", "Tone/signal/EqualZero"], function(Tone){
|
||||
|
||||
/**
|
||||
* return the absolute value of an incoming signal
|
||||
* @class return the absolute value of an incoming signal
|
||||
*
|
||||
* @constructor
|
||||
* @extends {Tone}
|
||||
* @param {number} value
|
||||
*/
|
||||
Tone.Abs = function(value){
|
||||
Tone.Abs = function(){
|
||||
Tone.call(this);
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
define(["Tone/core/Tone", "Tone/signal/Signal"], function(Tone){
|
||||
|
||||
/**
|
||||
* Adds a value to an incoming signal
|
||||
* @class Adds a value to an incoming signal
|
||||
*
|
||||
* @constructor
|
||||
* @extends {Tone}
|
||||
|
|
Loading…
Reference in a new issue