This commit is contained in:
2026-09-01 15:29:44 -04:00
commit f172014102
422 changed files with 114388 additions and 0 deletions
@@ -0,0 +1,15 @@
/// @ref gtx_perpendicular
/// @file glm/gtx/perpendicular.inl
namespace glm
{
template <typename vecType>
GLM_FUNC_QUALIFIER vecType perp
(
vecType const & x,
vecType const & Normal
)
{
return x - proj(x, Normal);
}
}//namespace glm