GRK-2023/dependencies/glm/gtx/projection.inl
Aleksander Burkowski f52499db19 Init
2023-01-15 19:33:53 +01:00

12 lines
268 B
C++

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