summaryrefslogtreecommitdiff
path: root/data_structures/GotoTagVisibilityMO.js
diff options
context:
space:
mode:
authorASP12342016-06-23 06:09:00 +0000
committerASP12342016-06-23 06:09:00 +0000
commit84cf1f0a1f2106d6a21a6d30ae064365854dd727 (patch)
tree2a1dcf2321735e2b67eeaf5d7991282274191d60 /data_structures/GotoTagVisibilityMO.js
parent3353738f687567fd643e308b4755e5ee1f8f090a (diff)
downloadxcos-on-web-84cf1f0a1f2106d6a21a6d30ae064365854dd727.tar.gz
xcos-on-web-84cf1f0a1f2106d6a21a6d30ae064365854dd727.tar.bz2
xcos-on-web-84cf1f0a1f2106d6a21a6d30ae064365854dd727.zip
Implement BOUNCE Block
Diffstat (limited to 'data_structures/GotoTagVisibilityMO.js')
-rw-r--r--data_structures/GotoTagVisibilityMO.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/data_structures/GotoTagVisibilityMO.js b/data_structures/GotoTagVisibilityMO.js
index 125bb29..8ede428 100644
--- a/data_structures/GotoTagVisibilityMO.js
+++ b/data_structures/GotoTagVisibilityMO.js
@@ -3,7 +3,7 @@ function GotoTagVisibilityMO () {
var model = scicos_model();
model.sim = new ScilabString(["gototagvisibilitymo"]);
- model.in = new ScilabDouble();
+ model.in1 = new ScilabDouble();
model.in2 = new ScilabDouble();
model.out = new ScilabDouble();
model.out2 = new ScilabDouble();
@@ -19,4 +19,5 @@ function GotoTagVisibilityMO () {
var gr_i = [];
this.x=new standard_define(new ScilabDouble([2,2]),model,exprs,gr_i);
+ return new BasicBlock(this.x)
}