gtx_intersect.cpp 656 B

12345678910111213141516171819
  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/intersect.cpp
  8. ///////////////////////////////////////////////////////////////////////////////////////////////////
  9. #define GLM_FORCE_RADIANS
  10. #include <glm/gtc/type_precision.hpp>
  11. #include <glm/gtx/intersect.hpp>
  12. int main()
  13. {
  14. int Error(0);
  15. return Error;
  16. }