Projekt_Grafika/dependencies/glm/gtx/projection.inl

12 lines
268 B
Plaintext
Raw Permalink Normal View History

2021-01-29 17:02:11 +01:00
/// @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