FixedPoint-Sharp icon indicating copy to clipboard operation
FixedPoint-Sharp copied to clipboard

Fixed point math with 48.16 precision (based on lib by https://github.com/fholm)

Results 3 FixedPoint-Sharp issues
Sort by recently updated
recently updated
newest added

need check pow2 num is neg

Hi, Acos input values between ~0.99 - 1.0 lead to some fairly imprecise output values, off by up to 5 degrees. eg. ``` input=0.9941521, expected=0.1082002, real=0.06253052, diff=0.04566966, :: degrees diff:2.616679...

Currently `fixmath.Atan2(0,0)` tries to divide by zero. While this is kind of unspecified behaviour, most other c# math libs simply return `0`, so I think it would be nice to...