Re-implementation of Izanami game engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
165 B

  1. #ifndef IZ_MATH_H
  2. #define IZ_MATH_H
  3. #include <math.h>
  4. typedef float IZ_Real;
  5. inline IZ_Real IZ_Sqrt(IZ_Real x) { return (IZ_Real) sqrtf(x); }
  6. #endif //IZ_MATH_H