初始化项目

This commit is contained in:
2025-08-20 10:00:00 +08:00
commit cbe1fd2c11
813 changed files with 247178 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
/// @ref gtx_projection
namespace glm
{
template<typename genType>
GLM_FUNC_QUALIFIER genType proj(genType const& x, genType const& Normal)
{
return glm::dot(x, Normal) / glm::dot(Normal, Normal) * Normal;
}
}//namespace glm