What does EPS mean in C?

Posted by John on Stack Overflow See other posts from Stack Overflow or by John
Published on 2009-03-09T16:11:58Z Indexed on 2010/05/27 3:51 UTC
Read the original article Hit count: 280

Filed under:
|

I have the following code snippet:

if (ABS(p43.x)  < EPS && ABS(p43.y)  < EPS && ABS(p43.z)  < EPS) return(FALSE);

Which I'm trying to convert to C#. What does "EPS" mean?

This code is from http://local.wasp.uwa.edu.au/~pbourke/geometry/lineline3d/

© Stack Overflow or respective owner

Related posts about c

    Related posts about eps