diff options
Diffstat (limited to 'js/Misc/BPLATFORM.js')
-rw-r--r-- | js/Misc/BPLATFORM.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/js/Misc/BPLATFORM.js b/js/Misc/BPLATFORM.js index 3f29cbfc..8314c565 100644 --- a/js/Misc/BPLATFORM.js +++ b/js/Misc/BPLATFORM.js @@ -37,13 +37,13 @@ function BPLATFORM() { return options; } BPLATFORM.prototype.set = function BPLATFORM() { - this.plen = parseFloat((arguments[0]["plen"])) - this.csiz = parseFloat((arguments[0]["csiz"])) - this.phi = parseFloat((arguments[0]["phi"])) - 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.plen = parseFloat(arguments[0]["plen"]) + this.csiz = parseFloat(arguments[0]["csiz"]) + this.phi = parseFloat(arguments[0]["phi"]) + 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.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; |