reciprocal.hpp 570 B

123456789101112131415161718192021222324
  1. /// @ref gtc_reciprocal
  2. /// @file glm/gtc/reciprocal.hpp
  3. ///
  4. /// @see core (dependence)
  5. ///
  6. /// @defgroup gtc_reciprocal GLM_GTC_reciprocal
  7. /// @ingroup gtc
  8. ///
  9. /// Include <glm/gtc/reciprocal.hpp> to use the features of this extension.
  10. ///
  11. /// Define secant, cosecant and cotangent functions.
  12. #pragma once
  13. // Dependencies
  14. #include "../detail/setup.hpp"
  15. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  16. # pragma message("GLM: GLM_GTC_reciprocal extension included")
  17. #endif
  18. #include "../ext/scalar_reciprocal.hpp"
  19. #include "../ext/vector_reciprocal.hpp"