diff options
author | nlb <[email protected]> | 2019-12-25 16:20:04 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-25 16:20:04 +0100 |
commit | b7a32c7ab1035863eeb867efeaa4eed80695f2cc (patch) | |
tree | 0c19d8655fda3ae8469119c51a661212dc7ca754 | |
parent | 84c0af17fbfe727ef62582ed6248d971fa36e1e5 (diff) | |
download | Orca-b7a32c7ab1035863eeb867efeaa4eed80695f2cc.tar.gz Orca-b7a32c7ab1035863eeb867efeaa4eed80695f2cc.zip |
Rename the B operator from bounce to between
-rw-r--r-- | desktop/sources/scripts/core/library.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/sources/scripts/core/library.js b/desktop/sources/scripts/core/library.js index 679a21c..4b092d1 100644 --- a/desktop/sources/scripts/core/library.js +++ b/desktop/sources/scripts/core/library.js @@ -25,8 +25,8 @@ library.a = function OperatorA (orca, x, y, passive) { library.b = function OperatorL (orca, x, y, passive) { Operator.call(this, orca, x, y, 'b', passive) - this.name = 'bounce' - this.info = 'Outputs difference between inputs' + this.name = 'between' + this.info = 'Outputs the absolute value of the subtraction between the inputs' this.ports.a = { x: -1, y: 0 } this.ports.b = { x: 1, y: 0 } |