Initial commit

This commit is contained in:
Thraix
2023-01-07 21:09:01 +01:00
commit 0396318d2d
441 changed files with 70331 additions and 0 deletions
@@ -0,0 +1,10 @@
/// @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