diff options
Diffstat (limited to 'Project/glm/gtx/projection.inl')
-rw-r--r-- | Project/glm/gtx/projection.inl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Project/glm/gtx/projection.inl b/Project/glm/gtx/projection.inl new file mode 100644 index 0000000..f23f884 --- /dev/null +++ b/Project/glm/gtx/projection.inl @@ -0,0 +1,10 @@ +/// @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 |