summaryrefslogtreecommitdiff
path: root/js/Sources/IN_f.js
diff options
context:
space:
mode:
authorSunil Shetye2018-06-25 18:20:39 +0530
committerSunil Shetye2018-06-26 11:06:22 +0530
commit7465daea85285ba7f291b6bf6ddc45caa9e7ad65 (patch)
treee8e3e4dd60d469c290d55de15644ddbc1e013bc6 /js/Sources/IN_f.js
parent7c70459c10aed0d74ee03896abaf47fefdbf7c8f (diff)
downloadsci2js-7465daea85285ba7f291b6bf6ddc45caa9e7ad65.tar.gz
sci2js-7465daea85285ba7f291b6bf6ddc45caa9e7ad65.tar.bz2
sci2js-7465daea85285ba7f291b6bf6ddc45caa9e7ad65.zip
add spacing to end of block also
Diffstat (limited to 'js/Sources/IN_f.js')
-rw-r--r--js/Sources/IN_f.js67
1 files changed, 34 insertions, 33 deletions
diff --git a/js/Sources/IN_f.js b/js/Sources/IN_f.js
index d5d41983..b5d4fc06 100644
--- a/js/Sources/IN_f.js
+++ b/js/Sources/IN_f.js
@@ -12,50 +12,51 @@ function IN_f() {
model.dep_ut = [false,false];
exprs = sci2exp(prt);
gr_i = [];
- x = standard_define([1,1],model,exprs,gr_i);
+ this.x = standard_define([1,1],model,exprs,gr_i);
}
IN_f.prototype.details = function IN_f() {
+ return this.x;
}
IN_f.prototype.get = function IN_f() {
}
IN_f.prototype.set = function IN_f() {
- x = arg1;
+ this.x = arg1;
graphics = arg1.graphics;
model = arg1.model;
exprs = graphics.exprs;
if (size(exprs,"*")==2) {
- exprs = exprs[1-1];
-}
+ exprs = exprs[1-1];
+ }
if (size(exprs,"*")==1) {
- exprs = [[exprs[1-1]],["[-1 -2]"],["-1"]];
-}
+ exprs = [[exprs[1-1]],["[-1 -2]"],["-1"]];
+ }
while (true) {
- [ok,prt,otsz,ot,exprs] = getvalue(_("Set Input block parameters"),[[_("Port number")],[_("Outport size ([-1 -2] for inherit)")],[_("Outport Type (-1 for inherit)")]],list("vec",1,"vec",-1,"vec",1),exprs);
- if (!ok) {
-break;
-}
- prt = int(prt);
- if (prt<=0) {
-message(_("Port number must be a positive integer"));
- } else if (!isequal(size(otsz,"*"),2)) {
-message(_("Outport Size must be a 2 elements vector"));
- } else if (((ot<1||ot>9)&&(ot!=-1))) {
-message(_("Outport type must be a number between 1 and 9, or -1 for inheritance."));
- } else {
- if (model.ipar!=prt) {
- needcompile = 4;
- y = needcompile;
-}
- model.ipar = prt;
- model.firing = [];
- model.out = otsz[1-1];
- model.out2 = otsz[2-1];
- model.outtyp = ot;
- graphics.exprs = exprs;
- x.graphics = graphics;
- x.model = model;
-break;
-}
-}
+ [ok,prt,otsz,ot,exprs] = getvalue(_("Set Input block parameters"),[[_("Port number")],[_("Outport size ([-1 -2] for inherit)")],[_("Outport Type (-1 for inherit)")]],list("vec",1,"vec",-1,"vec",1),exprs);
+ if (!ok) {
+ break;
+ }
+ prt = int(prt);
+ if (prt<=0) {
+ message(_("Port number must be a positive integer"));
+ } else if (!isequal(size(otsz,"*"),2)) {
+ message(_("Outport Size must be a 2 elements vector"));
+ } else if (((ot<1||ot>9)&&(ot!=-1))) {
+ message(_("Outport type must be a number between 1 and 9, or -1 for inheritance."));
+ } else {
+ if (model.ipar!=prt) {
+ needcompile = 4;
+ y = needcompile;
+ }
+ model.ipar = prt;
+ model.firing = [];
+ model.out = otsz[1-1];
+ model.out2 = otsz[2-1];
+ model.outtyp = ot;
+ graphics.exprs = exprs;
+ this.x.graphics = graphics;
+ this.x.model = model;
+ break;
+ }
+ }
}
}