diff options
Diffstat (limited to 'data_structures_correct/CFSCOPE.js')
-rw-r--r-- | data_structures_correct/CFSCOPE.js | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/data_structures_correct/CFSCOPE.js b/data_structures_correct/CFSCOPE.js index 16ee3e5..c2c7991 100644 --- a/data_structures_correct/CFSCOPE.js +++ b/data_structures_correct/CFSCOPE.js @@ -2,28 +2,14 @@ function CFSCOPE() { CFSCOPE.prototype.define = function CFSCOPE() { this.win = -1; - this.wdim = [ - [600], - [400] - ]; - this.wpos = [ - [-1], - [-1] - ]; - this.clrs = [ - [1], - [3], - [5], - [7], - [9], - [11], - [13], - [15] - ]; + this.wdim = [[600],[400]]; + this.wpos = [[-1],[-1]]; + this.clrs = [[1],[3],[5],[7],[9],[11],[13],[15]]; this.N = 2; this.ymin = -15; this.ymax = 15; this.per = 30; + var model = scicos_model(); model.sim = list(new ScilabString(["cfscope"]), new ScilabDouble([4])); model.evtin = new ScilabDouble([1]); |