blob: fa9286eaf87b435edbbce45996aa53f867f68111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* autogenerated from "macros/Sources/Ground_g.sci" */
function Ground_g() {
Ground_g.prototype.define = function Ground_g() {
var C = [0];
this.model = scicos_model();
this.model.sim = list(new ScilabString(["cstblk4_m"]), new ScilabDouble([4]));
this.model.in = new ScilabDouble([]);
this.model.out = new ScilabDouble([1]);
this.model.in2 = new ScilabDouble([]);
this.model.out2 = new ScilabDouble([1]);
this.model.outtyp = new ScilabDouble([-1]);
this.model.rpar = new ScilabDouble([]);
this.model.opar = list(C);
this.model.blocktype = new ScilabString(["d"]);
this.model.dep_ut = new ScilabBoolean([false,false]);
var exprs = [];
var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"Ground_g\",sz(1),sz(2));"]);
this.x = new standard_define(new ScilabDouble([2,2]),this.model,new ScilabDouble(exprs),gr_i);
return new BasicBlock(this.x);
}
Ground_g.prototype.details = function Ground_g() {
return this.x;
}
Ground_g.prototype.get = function Ground_g() {
alert("parameters cannot be modified");
}
Ground_g.prototype.set = function Ground_g() {
return new BasicBlock(this.x);
}
Ground_g.prototype.get_popup_title = function Ground_g() {
return;
}
Ground_g.prototype.getContainer = function Ground_g() { return new BasicBlock(this.x); }
}
|