Dodaj pliki projektów.

This commit is contained in:
Pc
2024-11-28 18:17:49 +01:00
parent 7e7c083809
commit b5356807ae
450 changed files with 139514 additions and 0 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