blob: 1457a521f199d1778356609160577e220fad42f2 (
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
|
/* autogenerated from "macros/Events/VirtualCLK0.sci" */
function VirtualCLK0() {
VirtualCLK0.prototype.define = function VirtualCLK0() {
this.model = scicos_model();
this.model.sim = new ScilabString(["vrtclk0"]);
this.model.evtin = new ScilabDouble([1]);
this.model.opar = list();
this.model.ipar = new ScilabDouble([]);
this.model.blocktype = new ScilabString(["d"]);
this.model.firing = new ScilabDouble([-1]);
this.model.dep_ut = new ScilabDouble([false,false]);
this.exprs = [];
this.x = new standard_define(new ScilabDouble([2,2]),this.model,this.exprs," ");
return new BasicBlock(this.x);
}
VirtualCLK0.prototype.details = function VirtualCLK0() {
return this.x;
}
VirtualCLK0.prototype.get = function VirtualCLK0() {
var options = {
}
return options;
}
VirtualCLK0.prototype.set = function VirtualCLK0() {
return new BasicBlock(this.x);
}
}
|