gtx_normalize_dot.cpp 638 B

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