horror/thirdparty/ode-0.16.5/include/ode/precision.h.in

17 lines
274 B
C
Raw Normal View History

2024-06-10 17:48:14 +08:00
#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 @ODE_PRECISION@
#endif
#endif