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
|