diff options
author | Sunil Shetye | 2018-07-06 10:38:38 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-07-09 12:16:25 +0530 |
commit | 5a28e41a3105338f747b8a30f67000920490c67d (patch) | |
tree | e55c568d243ea8e0ec539f0df20cefbc3e42f3ef /js/Sinks | |
parent | 200c4cfb3bd50c0b05fdf5b58c6e3671853cc5ad (diff) | |
download | sci2js-5a28e41a3105338f747b8a30f67000920490c67d.tar.gz sci2js-5a28e41a3105338f747b8a30f67000920490c67d.tar.bz2 sci2js-5a28e41a3105338f747b8a30f67000920490c67d.zip |
make string as the default type
Diffstat (limited to 'js/Sinks')
-rw-r--r-- | js/Sinks/AFFICH_m.js | 14 | ||||
-rw-r--r-- | js/Sinks/BARXY.js | 10 | ||||
-rw-r--r-- | js/Sinks/CANIMXY.js | 22 | ||||
-rw-r--r-- | js/Sinks/CANIMXY3D.js | 22 | ||||
-rw-r--r-- | js/Sinks/CEVENTSCOPE.js | 12 | ||||
-rw-r--r-- | js/Sinks/CFSCOPE.js | 18 | ||||
-rw-r--r-- | js/Sinks/CLKOUTV_f.js | 2 | ||||
-rw-r--r-- | js/Sinks/CLKOUT_f.js | 2 | ||||
-rw-r--r-- | js/Sinks/CMAT3D.js | 10 | ||||
-rw-r--r-- | js/Sinks/CMATVIEW.js | 6 | ||||
-rw-r--r-- | js/Sinks/CMSCOPE.js | 22 | ||||
-rw-r--r-- | js/Sinks/CSCOPE.js | 20 | ||||
-rw-r--r-- | js/Sinks/CSCOPXY.js | 22 | ||||
-rw-r--r-- | js/Sinks/CSCOPXY3D.js | 22 | ||||
-rw-r--r-- | js/Sinks/OUTIMPL_f.js | 2 | ||||
-rw-r--r-- | js/Sinks/OUT_f.js | 2 | ||||
-rw-r--r-- | js/Sinks/TOWS_c.js | 6 | ||||
-rw-r--r-- | js/Sinks/WFILE_f.js | 8 | ||||
-rw-r--r-- | js/Sinks/WRITEAU_f.js | 4 | ||||
-rw-r--r-- | js/Sinks/WRITEC_f.js | 10 |
20 files changed, 118 insertions, 118 deletions
diff --git a/js/Sinks/AFFICH_m.js b/js/Sinks/AFFICH_m.js index 6d6e3506..3b073df5 100644 --- a/js/Sinks/AFFICH_m.js +++ b/js/Sinks/AFFICH_m.js @@ -39,13 +39,13 @@ function AFFICH_m() { return options; } AFFICH_m.prototype.set = function AFFICH_m() { - this.in1 = inverse((arguments[0]["in1"])) - this.font = parseFloat((arguments[0]["font"])) - this.fontsize = parseFloat((arguments[0]["fontsize"])) - this.colr = parseFloat((arguments[0]["colr"])) - this.nt = parseFloat((arguments[0]["nt"])) - this.nd = parseFloat((arguments[0]["nd"])) - this.herit = parseFloat((arguments[0]["herit"])) + this.in1 = inverse(arguments[0]["in1"]) + this.font = parseFloat(arguments[0]["font"]) + this.fontsize = parseFloat(arguments[0]["fontsize"]) + this.colr = parseFloat(arguments[0]["colr"]) + this.nt = parseFloat(arguments[0]["nt"]) + this.nd = parseFloat(arguments[0]["nd"]) + this.herit = arguments[0]["herit"] this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/BARXY.js b/js/Sinks/BARXY.js index 657f2035..48eb2b5e 100644 --- a/js/Sinks/BARXY.js +++ b/js/Sinks/BARXY.js @@ -35,11 +35,11 @@ function BARXY() { return options; } BARXY.prototype.set = function BARXY() { - this.xmin = parseFloat((arguments[0]["xmin"])) - this.xmax = parseFloat((arguments[0]["xmax"])) - this.ymin = parseFloat((arguments[0]["ymin"])) - this.ymax = parseFloat((arguments[0]["ymax"])) - this.thickness = parseFloat((arguments[0]["thickness"])) + this.xmin = parseFloat(arguments[0]["xmin"]) + this.xmax = parseFloat(arguments[0]["xmax"]) + this.ymin = parseFloat(arguments[0]["ymin"]) + this.ymax = parseFloat(arguments[0]["ymax"]) + this.thickness = arguments[0]["thickness"] this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/CANIMXY.js b/js/Sinks/CANIMXY.js index 6473d23b..3502c2e9 100644 --- a/js/Sinks/CANIMXY.js +++ b/js/Sinks/CANIMXY.js @@ -48,17 +48,17 @@ function CANIMXY() { return options; } CANIMXY.prototype.set = function CANIMXY() { - this.nbr_curves = parseFloat((arguments[0]["nbr_curves"])) - this.clrs = parseFloat((arguments[0]["clrs"])) - this.siz = parseFloat((arguments[0]["siz"])) - this.win = parseFloat((arguments[0]["win"])) - this.wpos = inverse((arguments[0]["wpos"])) - this.wdim = inverse((arguments[0]["wdim"])) - this.xmin = parseFloat((arguments[0]["xmin"])) - this.xmax = parseFloat((arguments[0]["xmax"])) - this.ymin = parseFloat((arguments[0]["ymin"])) - this.ymax = parseFloat((arguments[0]["ymax"])) - this.N = parseFloat((arguments[0]["N"])) + this.nbr_curves = parseFloat(arguments[0]["nbr_curves"]) + this.clrs = parseFloat(arguments[0]["clrs"]) + this.siz = parseFloat(arguments[0]["siz"]) + this.win = parseFloat(arguments[0]["win"]) + this.wpos = inverse(arguments[0]["wpos"]) + this.wdim = inverse(arguments[0]["wdim"]) + this.xmin = parseFloat(arguments[0]["xmin"]) + this.xmax = parseFloat(arguments[0]["xmax"]) + this.ymin = parseFloat(arguments[0]["ymin"]) + this.ymax = parseFloat(arguments[0]["ymax"]) + this.N = parseFloat(arguments[0]["N"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/CANIMXY3D.js b/js/Sinks/CANIMXY3D.js index 6488cddc..a68ddeb6 100644 --- a/js/Sinks/CANIMXY3D.js +++ b/js/Sinks/CANIMXY3D.js @@ -48,17 +48,17 @@ function CANIMXY3D() { return options; } CANIMXY3D.prototype.set = function CANIMXY3D() { - this.nbr_curves = parseFloat((arguments[0]["nbr_curves"])) - this.clrs = inverse((arguments[0]["clrs"])) - this.siz = inverse((arguments[0]["siz"])) - this.win = parseFloat((arguments[0]["win"])) - this.wpos = inverse((arguments[0]["wpos"])) - this.wdim = inverse((arguments[0]["wdim"])) - this.vec_x = inverse((arguments[0]["vec_x"])) - this.vec_y = inverse((arguments[0]["vec_y"])) - this.vec_z = inverse((arguments[0]["vec_z"])) - this.param3ds = inverse((arguments[0]["param3ds"])) - this.N = parseFloat((arguments[0]["N"])) + this.nbr_curves = parseFloat(arguments[0]["nbr_curves"]) + this.clrs = inverse(arguments[0]["clrs"]) + this.siz = inverse(arguments[0]["siz"]) + this.win = parseFloat(arguments[0]["win"]) + this.wpos = inverse(arguments[0]["wpos"]) + this.wdim = inverse(arguments[0]["wdim"]) + this.vec_x = inverse(arguments[0]["vec_x"]) + this.vec_y = inverse(arguments[0]["vec_y"]) + this.vec_z = inverse(arguments[0]["vec_z"]) + this.param3ds = inverse(arguments[0]["param3ds"]) + this.N = parseFloat(arguments[0]["N"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/CEVENTSCOPE.js b/js/Sinks/CEVENTSCOPE.js index bb514ece..c69e296c 100644 --- a/js/Sinks/CEVENTSCOPE.js +++ b/js/Sinks/CEVENTSCOPE.js @@ -34,12 +34,12 @@ function CEVENTSCOPE() { return options; } CEVENTSCOPE.prototype.set = function CEVENTSCOPE() { - this.nclock = parseFloat((arguments[0]["nclock"])) - this.clrs = inverse((arguments[0]["clrs"])) - this.win = parseFloat((arguments[0]["win"])) - this.wpos = inverse((arguments[0]["wpos"])) - this.wdim = inverse((arguments[0]["wdim"])) - this.per = parseFloat((arguments[0]["per"])) + this.nclock = parseFloat(arguments[0]["nclock"]) + this.clrs = inverse(arguments[0]["clrs"]) + this.win = parseFloat(arguments[0]["win"]) + this.wpos = inverse(arguments[0]["wpos"]) + this.wdim = inverse(arguments[0]["wdim"]) + this.per = parseFloat(arguments[0]["per"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/CFSCOPE.js b/js/Sinks/CFSCOPE.js index 4c3738d1..b20b44d9 100644 --- a/js/Sinks/CFSCOPE.js +++ b/js/Sinks/CFSCOPE.js @@ -39,15 +39,15 @@ function CFSCOPE() { return options; } CFSCOPE.prototype.set = function CFSCOPE() { - this.clrs = inverse((arguments[0]["clrs"])) - this.win = parseFloat((arguments[0]["win"])) - this.wpos = inverse((arguments[0]["wpos"])) - this.wdim = inverse((arguments[0]["wdim"])) - this.ymin = parseFloat((arguments[0]["ymin"])) - this.ymax = parseFloat((arguments[0]["ymax"])) - this.per = parseFloat((arguments[0]["per"])) - this.N = parseFloat((arguments[0]["N"])) - this.wu = parseFloat((arguments[0]["wu"])) + this.clrs = inverse(arguments[0]["clrs"]) + this.win = parseFloat(arguments[0]["win"]) + this.wpos = inverse(arguments[0]["wpos"]) + this.wdim = inverse(arguments[0]["wdim"]) + this.ymin = parseFloat(arguments[0]["ymin"]) + this.ymax = parseFloat(arguments[0]["ymax"]) + this.per = parseFloat(arguments[0]["per"]) + this.N = parseFloat(arguments[0]["N"]) + this.wu = arguments[0]["wu"] this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/CLKOUTV_f.js b/js/Sinks/CLKOUTV_f.js index 69f7b5cb..4e80cd28 100644 --- a/js/Sinks/CLKOUTV_f.js +++ b/js/Sinks/CLKOUTV_f.js @@ -22,7 +22,7 @@ function CLKOUTV_f() { return options; } CLKOUTV_f.prototype.set = function CLKOUTV_f() { - this.prt = parseFloat((arguments[0]["prt"])) + this.prt = arguments[0]["prt"] this.x = arg1; graphics = arg1.graphics; model = arg1.model; diff --git a/js/Sinks/CLKOUT_f.js b/js/Sinks/CLKOUT_f.js index 4d36da39..985ef1d8 100644 --- a/js/Sinks/CLKOUT_f.js +++ b/js/Sinks/CLKOUT_f.js @@ -22,7 +22,7 @@ function CLKOUT_f() { return options; } CLKOUT_f.prototype.set = function CLKOUT_f() { - this.prt = parseFloat((arguments[0]["prt"])) + this.prt = parseFloat(arguments[0]["prt"]) this.x = arg1; graphics = arg1.graphics; model = arg1.model; diff --git a/js/Sinks/CMAT3D.js b/js/Sinks/CMAT3D.js index ea3cf4b8..a9d7bb37 100644 --- a/js/Sinks/CMAT3D.js +++ b/js/Sinks/CMAT3D.js @@ -38,11 +38,11 @@ function CMAT3D() { return options; } CMAT3D.prototype.set = function CMAT3D() { - this.vec_x = parseFloat((arguments[0]["vec_x"])) - this.vec_y = parseFloat((arguments[0]["vec_y"])) - this.colormap = parseFloat((arguments[0]["colormap"])) - this.cmin = parseFloat((arguments[0]["cmin"])) - this.cmax = parseFloat((arguments[0]["cmax"])) + this.vec_x = arguments[0]["vec_x"] + this.vec_y = arguments[0]["vec_y"] + this.colormap = parseFloat(arguments[0]["colormap"]) + this.cmin = parseFloat(arguments[0]["cmin"]) + this.cmax = parseFloat(arguments[0]["cmax"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/CMATVIEW.js b/js/Sinks/CMATVIEW.js index 95a83038..3789d80b 100644 --- a/js/Sinks/CMATVIEW.js +++ b/js/Sinks/CMATVIEW.js @@ -34,9 +34,9 @@ function CMATVIEW() { return options; } CMATVIEW.prototype.set = function CMATVIEW() { - this.colormap = parseFloat((arguments[0]["colormap"])) - this.cmin = parseFloat((arguments[0]["cmin"])) - this.cmax = parseFloat((arguments[0]["cmax"])) + this.colormap = parseFloat(arguments[0]["colormap"]) + this.cmin = parseFloat(arguments[0]["cmin"]) + this.cmax = parseFloat(arguments[0]["cmax"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/CMSCOPE.js b/js/Sinks/CMSCOPE.js index 2192a6b7..d005be05 100644 --- a/js/Sinks/CMSCOPE.js +++ b/js/Sinks/CMSCOPE.js @@ -47,17 +47,17 @@ function CMSCOPE() { return options; } CMSCOPE.prototype.set = function CMSCOPE() { - this.in1 = inverse((arguments[0]["in1"])) - this.clrs = inverse((arguments[0]["clrs"])) - this.win = parseFloat((arguments[0]["win"])) - this.wpos = inverse((arguments[0]["wpos"])) - this.wdim = inverse((arguments[0]["wdim"])) - this.ymin = inverse((arguments[0]["ymin"])) - this.ymax = inverse((arguments[0]["ymax"])) - this.per = inverse((arguments[0]["per"])) - this.N = parseFloat((arguments[0]["N"])) - this.heritance = parseFloat((arguments[0]["heritance"])) - this.nom = parseFloat((arguments[0]["nom"])) + this.in1 = inverse(arguments[0]["in1"]) + this.clrs = inverse(arguments[0]["clrs"]) + this.win = parseFloat(arguments[0]["win"]) + this.wpos = inverse(arguments[0]["wpos"]) + this.wdim = inverse(arguments[0]["wdim"]) + this.ymin = inverse(arguments[0]["ymin"]) + this.ymax = inverse(arguments[0]["ymax"]) + this.per = inverse(arguments[0]["per"]) + this.N = parseFloat(arguments[0]["N"]) + this.heritance = arguments[0]["heritance"] + this.nom = arguments[0]["nom"] this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/CSCOPE.js b/js/Sinks/CSCOPE.js index 4726b9c9..82bd20c3 100644 --- a/js/Sinks/CSCOPE.js +++ b/js/Sinks/CSCOPE.js @@ -42,16 +42,16 @@ function CSCOPE() { return options; } CSCOPE.prototype.set = function CSCOPE() { - this.clrs = inverse((arguments[0]["clrs"])) - this.win = parseFloat((arguments[0]["win"])) - this.wpos = inverse((arguments[0]["wpos"])) - this.wdim = inverse((arguments[0]["wdim"])) - this.ymin = parseFloat((arguments[0]["ymin"])) - this.ymax = parseFloat((arguments[0]["ymax"])) - this.per = parseFloat((arguments[0]["per"])) - this.N = parseFloat((arguments[0]["N"])) - this.heritance = parseFloat((arguments[0]["heritance"])) - this.nom = parseFloat((arguments[0]["nom"])) + this.clrs = inverse(arguments[0]["clrs"]) + this.win = parseFloat(arguments[0]["win"]) + this.wpos = inverse(arguments[0]["wpos"]) + this.wdim = inverse(arguments[0]["wdim"]) + this.ymin = parseFloat(arguments[0]["ymin"]) + this.ymax = parseFloat(arguments[0]["ymax"]) + this.per = parseFloat(arguments[0]["per"]) + this.N = parseFloat(arguments[0]["N"]) + this.heritance = arguments[0]["heritance"] + this.nom = arguments[0]["nom"] this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/CSCOPXY.js b/js/Sinks/CSCOPXY.js index 71082262..e07d4078 100644 --- a/js/Sinks/CSCOPXY.js +++ b/js/Sinks/CSCOPXY.js @@ -47,17 +47,17 @@ function CSCOPXY() { return options; } CSCOPXY.prototype.set = function CSCOPXY() { - this.nbr_curves = parseFloat((arguments[0]["nbr_curves"])) - this.clrs = parseFloat((arguments[0]["clrs"])) - this.siz = parseFloat((arguments[0]["siz"])) - this.win = parseFloat((arguments[0]["win"])) - this.wpos = inverse((arguments[0]["wpos"])) - this.wdim = inverse((arguments[0]["wdim"])) - this.xmin = parseFloat((arguments[0]["xmin"])) - this.xmax = parseFloat((arguments[0]["xmax"])) - this.ymin = parseFloat((arguments[0]["ymin"])) - this.ymax = parseFloat((arguments[0]["ymax"])) - this.N = parseFloat((arguments[0]["N"])) + this.nbr_curves = parseFloat(arguments[0]["nbr_curves"]) + this.clrs = parseFloat(arguments[0]["clrs"]) + this.siz = parseFloat(arguments[0]["siz"]) + this.win = parseFloat(arguments[0]["win"]) + this.wpos = inverse(arguments[0]["wpos"]) + this.wdim = inverse(arguments[0]["wdim"]) + this.xmin = parseFloat(arguments[0]["xmin"]) + this.xmax = parseFloat(arguments[0]["xmax"]) + this.ymin = parseFloat(arguments[0]["ymin"]) + this.ymax = parseFloat(arguments[0]["ymax"]) + this.N = parseFloat(arguments[0]["N"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/CSCOPXY3D.js b/js/Sinks/CSCOPXY3D.js index 59e254ad..f24d67cb 100644 --- a/js/Sinks/CSCOPXY3D.js +++ b/js/Sinks/CSCOPXY3D.js @@ -47,17 +47,17 @@ function CSCOPXY3D() { return options; } CSCOPXY3D.prototype.set = function CSCOPXY3D() { - this.nbr_curves = parseFloat((arguments[0]["nbr_curves"])) - this.clrs = inverse((arguments[0]["clrs"])) - this.siz = inverse((arguments[0]["siz"])) - this.win = parseFloat((arguments[0]["win"])) - this.wpos = inverse((arguments[0]["wpos"])) - this.wdim = inverse((arguments[0]["wdim"])) - this.vec_x = inverse((arguments[0]["vec_x"])) - this.vec_y = inverse((arguments[0]["vec_y"])) - this.vec_z = inverse((arguments[0]["vec_z"])) - this.param3ds = inverse((arguments[0]["param3ds"])) - this.N = parseFloat((arguments[0]["N"])) + this.nbr_curves = parseFloat(arguments[0]["nbr_curves"]) + this.clrs = inverse(arguments[0]["clrs"]) + this.siz = inverse(arguments[0]["siz"]) + this.win = parseFloat(arguments[0]["win"]) + this.wpos = inverse(arguments[0]["wpos"]) + this.wdim = inverse(arguments[0]["wdim"]) + this.vec_x = inverse(arguments[0]["vec_x"]) + this.vec_y = inverse(arguments[0]["vec_y"]) + this.vec_z = inverse(arguments[0]["vec_z"]) + this.param3ds = inverse(arguments[0]["param3ds"]) + this.N = parseFloat(arguments[0]["N"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/OUTIMPL_f.js b/js/Sinks/OUTIMPL_f.js index 3656ece7..eb1aff0e 100644 --- a/js/Sinks/OUTIMPL_f.js +++ b/js/Sinks/OUTIMPL_f.js @@ -28,7 +28,7 @@ function OUTIMPL_f() { return options; } OUTIMPL_f.prototype.set = function OUTIMPL_f() { - this.prt = parseFloat((arguments[0]["prt"])) + this.prt = parseFloat(arguments[0]["prt"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/OUT_f.js b/js/Sinks/OUT_f.js index be1b1738..4a81d71f 100644 --- a/js/Sinks/OUT_f.js +++ b/js/Sinks/OUT_f.js @@ -25,7 +25,7 @@ function OUT_f() { return options; } OUT_f.prototype.set = function OUT_f() { - this.prt = parseFloat((arguments[0]["prt"])) + this.prt = parseFloat(arguments[0]["prt"]) this.x = arg1; graphics = arg1.graphics; model = arg1.model; diff --git a/js/Sinks/TOWS_c.js b/js/Sinks/TOWS_c.js index 3d2bec1b..67f4cf64 100644 --- a/js/Sinks/TOWS_c.js +++ b/js/Sinks/TOWS_c.js @@ -35,9 +35,9 @@ function TOWS_c() { return options; } TOWS_c.prototype.set = function TOWS_c() { - this.nz = parseFloat((arguments[0]["nz"])) - this.varnam = parseFloat((arguments[0]["varnam"])) - this.herit = parseFloat((arguments[0]["herit"])) + this.nz = parseFloat(arguments[0]["nz"]) + this.varnam = arguments[0]["varnam"] + this.herit = parseFloat(arguments[0]["herit"]) this.x = arg1; graphics = arg1.graphics; model = arg1.model; diff --git a/js/Sinks/WFILE_f.js b/js/Sinks/WFILE_f.js index 35514384..96bf2ea2 100644 --- a/js/Sinks/WFILE_f.js +++ b/js/Sinks/WFILE_f.js @@ -33,10 +33,10 @@ function WFILE_f() { return options; } WFILE_f.prototype.set = function WFILE_f() { - this.in1 = parseFloat((arguments[0]["in1"])) - this.fname1 = parseFloat((arguments[0]["fname1"])) - this.frmt1 = parseFloat((arguments[0]["frmt1"])) - this.N = parseFloat((arguments[0]["N"])) + this.in1 = parseFloat(arguments[0]["in1"]) + this.fname1 = parseFloat(arguments[0]["fname1"]) + this.frmt1 = parseFloat(arguments[0]["frmt1"]) + this.N = parseFloat(arguments[0]["N"]) warnobsolete("WRITEC_f","6.0.0"); warnMessage = msprintf(_("Feature %s is obsolete."),"WFILE_f"); warnAdvise = msprintf(_("Please use %s instead."),"WRITEC_f"); diff --git a/js/Sinks/WRITEAU_f.js b/js/Sinks/WRITEAU_f.js index 4b4caa17..d5302a86 100644 --- a/js/Sinks/WRITEAU_f.js +++ b/js/Sinks/WRITEAU_f.js @@ -32,8 +32,8 @@ function WRITEAU_f() { return options; } WRITEAU_f.prototype.set = function WRITEAU_f() { - this.N = parseFloat((arguments[0]["N"])) - this.swap = parseFloat((arguments[0]["swap"])) + this.N = parseFloat(arguments[0]["N"]) + this.swap = parseFloat(arguments[0]["swap"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; diff --git a/js/Sinks/WRITEC_f.js b/js/Sinks/WRITEC_f.js index 1e4800a2..b8be9fc4 100644 --- a/js/Sinks/WRITEC_f.js +++ b/js/Sinks/WRITEC_f.js @@ -35,11 +35,11 @@ function WRITEC_f() { return options; } WRITEC_f.prototype.set = function WRITEC_f() { - this.in1 = parseFloat((arguments[0]["in1"])) - this.fname1 = parseFloat((arguments[0]["fname1"])) - this.frmt1 = parseFloat((arguments[0]["frmt1"])) - this.N = parseFloat((arguments[0]["N"])) - this.swap = parseFloat((arguments[0]["swap"])) + this.in1 = parseFloat(arguments[0]["in1"]) + this.fname1 = parseFloat(arguments[0]["fname1"]) + this.frmt1 = arguments[0]["frmt1"] + this.N = parseFloat(arguments[0]["N"]) + this.swap = parseFloat(arguments[0]["swap"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; |