diff options
Diffstat (limited to 'js/Sources/PULSE_SC.js')
-rw-r--r-- | js/Sources/PULSE_SC.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/Sources/PULSE_SC.js b/js/Sources/PULSE_SC.js index 3d6c17f4..6d4c9ad5 100644 --- a/js/Sources/PULSE_SC.js +++ b/js/Sources/PULSE_SC.js @@ -118,4 +118,13 @@ function PULSE_SC() { PULSE_SC.prototype.get_popup_title = function PULSE_SC() { return this.set_param_popup_title; } + PULSE_SC.prototype.importset = function PULSE_SC() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.scicos_context.E = ary[0]; + this.scicos_context.W = ary[1]; + this.scicos_context.F = ary[2]; + this.scicos_context.A = ary[3]; + } + PULSE_SC.prototype.getContainer = function PULSE_SC() { return new BasicBlock(this.x); } } |