1
0
Fork 0
flightgear/tests/est-epsilon.c

21 lines
265 B
C
Raw Normal View History

1998-07-03 12:18:55 +00:00
#include <stdio.h>
#include <GL/glut.h>
int main() {
GLfloat a, t;
a = 1.0;
do {
printf("a = %.10f\n", a);
a = a / 2.0;
t = 1.0 + a;
} while ( t > 1.0 );
a = a + a;
printf("Estimated GLfloat epsilon = %.10f\n", a);
return(0);
}