diff options
Diffstat (limited to 'js/Misc/DEADBAND.js')
-rw-r--r-- | js/Misc/DEADBAND.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/Misc/DEADBAND.js b/js/Misc/DEADBAND.js index 581e8621..c158cd59 100644 --- a/js/Misc/DEADBAND.js +++ b/js/Misc/DEADBAND.js @@ -66,4 +66,12 @@ function DEADBAND() { DEADBAND.prototype.get_popup_title = function DEADBAND() { return this.set_param_popup_title; } + DEADBAND.prototype.importset = function DEADBAND() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.maxp = ary[0]; + this.minp = ary[1]; + this.zeroc = ary[2]; + } + DEADBAND.prototype.getContainer = function DEADBAND() { return new BasicBlock(this.x); } } |