blob: f3040a9b059ba5b916b432dbe1c3223041f7f6a5 (
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
|
/* 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 = [];
this.model.blocktype = new ScilabString("d");
this.model.firing = new ScilabDouble(-1);
this.model.dep_ut = [false,false];
exprs = [];
this.x = standard_define([2,2],this.model,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() {
this.x = arg1;
return new BasicBlock(this.x);
}
}
|