diff options
Diffstat (limited to 'js/Linear/CLSS_f.js')
-rw-r--r-- | js/Linear/CLSS_f.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/js/Linear/CLSS_f.js b/js/Linear/CLSS_f.js index 98eb5131..be51de15 100644 --- a/js/Linear/CLSS_f.js +++ b/js/Linear/CLSS_f.js @@ -102,4 +102,14 @@ function CLSS_f() { CLSS_f.prototype.get_popup_title = function CLSS_f() { return this.set_param_popup_title; } + CLSS_f.prototype.importset = function CLSS_f() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.A = ary[0]; + this.B = ary[1]; + this.C = ary[2]; + this.D = ary[3]; + this.x0 = ary[4]; + } + CLSS_f.prototype.getContainer = function CLSS_f() { return new BasicBlock(this.x); } } |