changes for nix

This commit is contained in:
2026-04-13 08:31:17 -04:00
parent f2b113351c
commit a6d1ffc765
1675 changed files with 94 additions and 220993 deletions

View File

@@ -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