perpendicular.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /// @ref gtx_perpendicular
  2. /// @file glm/gtx/perpendicular.hpp
  3. ///
  4. /// @see core (dependence)
  5. /// @see gtx_projection (dependence)
  6. ///
  7. /// @defgroup gtx_perpendicular GLM_GTX_perpendicular
  8. /// @ingroup gtx
  9. ///
  10. /// Include <glm/gtx/perpendicular.hpp> to use the features of this extension.
  11. ///
  12. /// Perpendicular of a vector from other one
  13. #pragma once
  14. // Dependency:
  15. #include "../glm.hpp"
  16. #include "../gtx/projection.hpp"
  17. #ifndef GLM_ENABLE_EXPERIMENTAL
  18. # error "GLM: GLM_GTX_perpendicular is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
  19. #endif
  20. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  21. # pragma message("GLM: GLM_GTX_perpendicular extension included")
  22. #endif
  23. namespace glm
  24. {
  25. /// @addtogroup gtx_perpendicular
  26. /// @{
  27. //! Projects x a perpendicular axis of Normal.
  28. //! From GLM_GTX_perpendicular extension.
  29. template<typename genType>
  30. GLM_FUNC_DECL genType perp(genType const& x, genType const& Normal);
  31. /// @}
  32. }//namespace glm
  33. #include "perpendicular.inl"