wsparcie dla visual studio, lekkie uprzątnięcie kodu

This commit is contained in:
2024-11-27 23:35:34 +01:00
parent 74256cf14b
commit bab9ab751c
451 changed files with 149074 additions and 129 deletions

10
GL/glm/gtx/projection.inl Normal file
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