
added ExpTen
File:1->F64.zip

Don't be that decent, it's also your lib now. I only brought it to live and you are keeping it alive nowjack wrote:for those that use the F64 lib by freedimension
Code: Select all
a.double
b.double
F64_Val(a, "621.675000")
F64_Round(a, 2, b)
Debug F64_Str(b)
the function F64_Round rounds the value up, so the result is correct.Xombie wrote: Shouldn't...
Return 621.68 and not 621.67?Code: Select all
a.double b.double F64_Val(a, "621.675000") F64_Round(a, 2, b) Debug F64_Str(b)
Code: Select all
a.double
b.double
F64_Val(a, "621.675001")
F64_Round(a, 2, b)
Debug F64_Str(b)