diff options
author | Sunil Shetye | 2018-07-02 22:51:03 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-07-02 22:51:03 +0530 |
commit | ca1a67f78f7de40a7956c69e41f4ddae2542f4f2 (patch) | |
tree | 6a07bd0428e542567726ff7325fcb71203ad6d15 /js/Sinks/CANIMXY3D.js | |
parent | 5ea6bd919623bb0dd58f235329b985b2bb6cb4ba (diff) | |
download | sci2js-ca1a67f78f7de40a7956c69e41f4ddae2542f4f2.tar.gz sci2js-ca1a67f78f7de40a7956c69e41f4ddae2542f4f2.tar.bz2 sci2js-ca1a67f78f7de40a7956c69e41f4ddae2542f4f2.zip |
add options block
Diffstat (limited to 'js/Sinks/CANIMXY3D.js')
-rw-r--r-- | js/Sinks/CANIMXY3D.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/js/Sinks/CANIMXY3D.js b/js/Sinks/CANIMXY3D.js index 27522472..24f50acb 100644 --- a/js/Sinks/CANIMXY3D.js +++ b/js/Sinks/CANIMXY3D.js @@ -32,6 +32,20 @@ function CANIMXY3D() { return this.x; } CANIMXY3D.prototype.get = function CANIMXY3D() { + var options = { + nbr_curves:["Number of curves",this.nbr_curves], + clrs:["color (>0) or mark (<0)",this.clrs], + siz:["line or mark size",this.siz], + win:["Output window number (-1 for automatic)",this.win], + wpos:["Output window position",this.wpos], + wdim:["Output window sizes",this.wdim], + vec_x:["Xmin and Xmax",this.vec_x], + vec_y:["Ymin and Ymax",this.vec_y], + vec_z:["Zmin and Zmax",this.vec_z], + param3ds:["Alpha and Theta",this.param3ds], + N:["Buffer size",this.N], + } + return options; } CANIMXY3D.prototype.set = function CANIMXY3D() { this.nbr_curves = parseFloat((arguments[0]["nbr_curves"])) |