mirror of
https://github.com/Inori/GPCS4.git
synced 2025-04-02 10:31:52 -04:00
10 lines
199 B
C++
10 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
|