mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 20:15:38 +00:00
![Leon Styhre](/assets/img/avatar_default.png)
git-subtree-dir: external/glm git-subtree-split: bf71a834948186f4097caa076cd2663c69a10e1e
11 lines
199 B
C++
11 lines
199 B
C++
/// @ref gtx_perpendicular
|
|
|
|
namespace glm
|
|
{
|
|
template<typename genType>
|
|
GLM_FUNC_QUALIFIER genType perp(genType const& x, genType const& Normal)
|
|
{
|
|
return x - proj(x, Normal);
|
|
}
|
|
}//namespace glm
|