gtx_matrix_interpolation.cpp 642 B

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