Re-implementation of Izanami game engine
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
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