dungeon/libs/glm/gtx/projection.inl

12 lines
279 B
Text
Raw Normal View History

2017-09-17 13:43:13 +02: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