Open Source Tomb Raider 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.

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. }