mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 06:35:38 +00:00
11 lines
232 B
Plaintext
11 lines
232 B
Plaintext
|
/// @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
|