diff options
Diffstat (limited to 'js/Misc/CBLOCK.js')
-rw-r--r-- | js/Misc/CBLOCK.js | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/js/Misc/CBLOCK.js b/js/Misc/CBLOCK.js index 6d2b6276..1c43099e 100644 --- a/js/Misc/CBLOCK.js +++ b/js/Misc/CBLOCK.js @@ -55,21 +55,21 @@ function CBLOCK() { return options; } CBLOCK.prototype.set = function CBLOCK() { - this.function_name = parseFloat((arguments[0]["function_name"])) - this.impli = parseFloat((arguments[0]["impli"])) - this.i = parseFloat((arguments[0]["i"])) - this.o = parseFloat((arguments[0]["o"])) - this.ci = parseFloat((arguments[0]["ci"])) - this.co = parseFloat((arguments[0]["co"])) - this.xx = inverse((arguments[0]["xx"])) - this.ng = parseFloat((arguments[0]["ng"])) - this.z = inverse((arguments[0]["z"])) - this.rpar = inverse((arguments[0]["rpar"])) - this.ipar = inverse((arguments[0]["ipar"])) - this.auto0 = parseFloat((arguments[0]["auto0"])) - this.depu = parseBoolean((arguments[0]["depu"])) - this.dept = parseBoolean((arguments[0]["dept"])) - this.lab = parseFloat((arguments[0]["lab"])) + this.function_name = arguments[0]["function_name"] + this.impli = arguments[0]["impli"] + this.i = parseFloat(arguments[0]["i"]) + this.o = parseFloat(arguments[0]["o"]) + this.ci = parseFloat(arguments[0]["ci"]) + this.co = parseFloat(arguments[0]["co"]) + this.xx = inverse(arguments[0]["xx"]) + this.ng = parseFloat(arguments[0]["ng"]) + this.z = inverse(arguments[0]["z"]) + this.rpar = inverse(arguments[0]["rpar"]) + this.ipar = inverse(arguments[0]["ipar"]) + this.auto0 = arguments[0]["auto0"] + this.depu = parseBoolean(arguments[0]["depu"]) + this.dept = parseBoolean(arguments[0]["dept"]) + this.lab = arguments[0]["lab"] this.x = arg1; model = arg1.model; graphics = arg1.graphics; |