summaryrefslogtreecommitdiff
path: root/js/Events/EVTGEN_f.js
blob: 804c5a0c33d2dbd30d0a99cd1b323a4644cfcf12 (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
35
36
37
38
39
40
41
/* autogenerated from "macros/Events/EVTGEN_f.sci" */
function EVTGEN_f() {
    EVTGEN_f.prototype.define = function EVTGEN_f() {
        tt = 0;
        model = scicos_model();
        model.sim = "trash";
        model.evtout = 1;
        model.blocktype = "d";
        model.firing = tt;
        model.dep_ut = [false,false];
        exprs = string(tt);
        gr_i = [];
        this.x = standard_define([3,2],model,exprs,gr_i);
        return new BasicBlock(this.x);
    }
    EVTGEN_f.prototype.details = function EVTGEN_f() {
        return this.x;
    }
    EVTGEN_f.prototype.get = function EVTGEN_f() {
    }
    EVTGEN_f.prototype.set = function EVTGEN_f() {
        this.x = arg1;
        graphics = arg1.graphics;
        exprs = graphics.exprs;
        model = arg1.model;
        while (true) {
            [ok,tt,exprs] = scicos_getvalue("Set Event time",["Event Time"],list("vec",1),exprs);
            if (!ok) {
                break;
            }
            graphics.exprs = exprs;
            if (model.firing!=tt) {
                model.firing = tt;
            }
            this.x.graphics = graphics;
            this.x.model = model;
            break;
        }
        return new BasicBlock(this.x);
    }
}