cermunnos
07-07-2011, 03:28 PM
In As3, I have condition such as
if(k < 0.0000000001)
Is it better practise to use this style or
if(k < 1e-10)
if(k < 0.0000000001)
Is it better practise to use this style or
if(k < 1e-10)
View Full Version : 1e-10 or 0.0000000001 ?