horror/thirdparty/ode-0.16.5/include/ode/precision.h
2024-06-10 12:48:14 +03:00

17 lines
278 B
C

#ifndef _ODE_PRECISION_H_
#define _ODE_PRECISION_H_
/* Define dSINGLE for single precision, dDOUBLE for double precision,
* but never both!
*/
#if defined(dIDESINGLE)
#define dSINGLE
#elif defined(dIDEDOUBLE)
#define dDOUBLE
#else
#define dUNDEFINEDPRECISION
#endif
#endif