initial commit

This commit is contained in:
izenynn
2025-02-17 21:05:45 +01:00
commit 06623aeb64
282 changed files with 113292 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
/// @ref gtx_projection
/// @file glm/gtx/projection.inl
namespace glm
{
template <typename vecType>
GLM_FUNC_QUALIFIER vecType proj(vecType const & x, vecType const & Normal)
{
return glm::dot(x, Normal) / glm::dot(Normal, Normal) * Normal;
}
}//namespace glm