Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

real.h

Go to the documentation of this file.
00001 /*
00002    File: real.h
00003 
00004    Copyright(C) C. Kotterink, Computed Graphics
00005 */
00006 #ifndef REAL_H
00007 #define REAL_H
00008 
00013 typedef float real;
00014 
00016 #define ZERO (real)1.0e-10
00017 
00019 #define INF (real)1.0e+10
00020 
00021 #define PI 3.1415926535897932384626433832795
00022 
00023 #define HALFPI (PI/2.0)
00024 
00026 #define DEG2RAD (PI/180.0)
00027 
00029 int realCompare(real a, real b, real precission);
00030 
00031 #endif

This documentation was generated using doxygen. If you have any comments or additions please mail me.