gtx_rotate_vector.cpp 714 B

1234567891011121314151617181920212223242526272829
  1. ///////////////////////////////////////////////////////////////////////////////////////////////////
  2. // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
  3. ///////////////////////////////////////////////////////////////////////////////////////////////////
  4. // Created : 2011-05-16
  5. // Updated : 2011-05-16
  6. // Licence : This source is under MIT licence
  7. // File : test/gtx/rotate_vector.cpp
  8. ///////////////////////////////////////////////////////////////////////////////////////////////////
  9. #include <glm/glm.hpp>
  10. #include <glm/gtx/rotate_vector.hpp>
  11. int test_()
  12. {
  13. int Error = 0;
  14. return Error;
  15. }
  16. int main()
  17. {
  18. int Error = 0;
  19. Error += test_();
  20. return Error;
  21. }