well I try to do
the same very simple math in actionscript and puredata and get different results...
PD
1.5707963267948966 -> cos -> print
output: -4.37114e-008
in flash
trace(Math.cos(1.5707963267948966));
output : 6.123031769111886e-17
I think it's because the number is cut when too long or something,
is there a way to fix this ?
thanks