summaryrefslogtreecommitdiff
path: root/data_structures_correct/CFSCOPE.js
diff options
context:
space:
mode:
authorAdhitya Kamakshidasan2016-06-23 17:01:16 +0530
committerGitHub2016-06-23 17:01:16 +0530
commitec57c8a08d85350084d6725998dab29c0e806b0f (patch)
tree6b466248f83bb6c97d048ee9013e90d913ff7583 /data_structures_correct/CFSCOPE.js
parent2aae4a520315c9b01228877fc6cdb0d0b9b2a3da (diff)
parentd8b0cfac9a71a9c2628c84505cf0f962f3c08f36 (diff)
downloadxcos-on-web-ec57c8a08d85350084d6725998dab29c0e806b0f.tar.gz
xcos-on-web-ec57c8a08d85350084d6725998dab29c0e806b0f.tar.bz2
xcos-on-web-ec57c8a08d85350084d6725998dab29c0e806b0f.zip
Merge pull request #63 from ASP1234/master
Implement CANIMXY3D Block
Diffstat (limited to 'data_structures_correct/CFSCOPE.js')
-rw-r--r--data_structures_correct/CFSCOPE.js22
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]);