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