gtx_polar_coordinates.cpp 695 B

1234567891011121314151617181920
  1. ///////////////////////////////////////////////////////////////////////////////////////////////////
  2. // OpenGL Mathematics Copyright (c) 2005 - 2014 G-Truc Creation (www.g-truc.net)
  3. ///////////////////////////////////////////////////////////////////////////////////////////////////
  4. // Created : 2013-10-25
  5. // Updated : 2013-10-25
  6. // Licence : This source is under MIT licence
  7. // File : test/gtx/polar_coordinates.cpp
  8. ///////////////////////////////////////////////////////////////////////////////////////////////////
  9. #define GLM_FORCE_RADIANS
  10. #include <glm/glm.hpp>
  11. #include <glm/gtc/type_precision.hpp>
  12. #include <glm/gtx/polar_coordinates.hpp>
  13. int main()
  14. {
  15. int Error(0);
  16. return Error;
  17. }