ScuffedMinecraft/Dependencies/include/glm/gtx/projection.inl

11 lines
232 B
Plaintext
Raw Normal View History

2024-09-02 14:31:50 +00: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