diff options
Diffstat (limited to 'js/Linear/DLR_f.js')
-rw-r--r-- | js/Linear/DLR_f.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/Linear/DLR_f.js b/js/Linear/DLR_f.js index 7a3bd188..6258df46 100644 --- a/js/Linear/DLR_f.js +++ b/js/Linear/DLR_f.js @@ -31,8 +31,8 @@ function DLR_f() { return options; } DLR_f.prototype.set = function DLR_f() { - this.num = parseFloat((arguments[0]["num"])) - this.den = parseFloat((arguments[0]["den"])) + this.num = arguments[0]["num"] + this.den = arguments[0]["den"] this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; |