vulkanTutorial/libs/glm-1.0.0/gtx/projection.inl

11 lines
232 B
Plaintext
Raw Permalink Normal View History

2024-02-18 23:22:05 +08: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