fraktal/include/glm/gtx/projection.inl

11 lines
232 B
Plaintext
Raw Normal View History

2021-02-08 22:56:15 +01:00
/// @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