Possible to increase floating point number precision?
Hi. Is there a way to specify the floating point precision JSL uses when performing calculations? That is, the number of significant digits used. For instance, on my computer 1 minus 1e-15 equals 0.999... (15 "9"s). But if I try 1 minus 1e-16, I just get 1. x = 1;y = 1e-15;z = x - y;Show(z); //z = 0.999999999999999 (aka 15 decimal places)y = 1e-16;z = x - y;Show(z); //z = 1Thanks...