From 6f67371bb1b46579ae837d0e0c61ac1b291be743 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sat, 13 Jan 2018 07:51:33 +0500 Subject: Directory renamed --- depedencies/include/glm/gtx/projection.inl | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 depedencies/include/glm/gtx/projection.inl (limited to 'depedencies/include/glm/gtx/projection.inl') diff --git a/depedencies/include/glm/gtx/projection.inl b/depedencies/include/glm/gtx/projection.inl deleted file mode 100644 index d21fe83..0000000 --- a/depedencies/include/glm/gtx/projection.inl +++ /dev/null @@ -1,11 +0,0 @@ -/// @ref gtx_projection -/// @file glm/gtx/projection.inl - -namespace glm -{ - template - GLM_FUNC_QUALIFIER vecType proj(vecType const & x, vecType const & Normal) - { - return glm::dot(x, Normal) / glm::dot(Normal, Normal) * Normal; - } -}//namespace glm -- cgit v1.2.3