diff options
Diffstat (limited to 'js/MatrixOp/SUBMAT.js')
-rw-r--r-- | js/MatrixOp/SUBMAT.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/MatrixOp/SUBMAT.js b/js/MatrixOp/SUBMAT.js index d3ca5591..c504c671 100644 --- a/js/MatrixOp/SUBMAT.js +++ b/js/MatrixOp/SUBMAT.js @@ -119,4 +119,15 @@ function SUBMAT() { SUBMAT.prototype.get_popup_title = function SUBMAT() { return this.set_param_popup_title; } + SUBMAT.prototype.importset = function SUBMAT() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.typ = ary[0]; + this.a = ary[1]; + this.b = ary[2]; + this.c = ary[3]; + this.d = ary[4]; + this.inp = ary[5]; + } + SUBMAT.prototype.getContainer = function SUBMAT() { return new BasicBlock(this.x); } } |