Open Source Tomb Raider Engine
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

MatMath.cpp 244B

123456789101112131415161718192021
  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <MatMath.h>
  4. void helMathTest()
  5. {
  6. printf("180/PI: %f, %f, %f\n",
  7. HEL_180_OVER_PI,
  8. 180.0f / HEL_PI,
  9. 180.0 / M_PI);
  10. }
  11. int main(int argc, char *argv[])
  12. {
  13. helMathTest();
  14. return 0;
  15. }