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/normalize_dot.inl | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 depedencies/include/glm/gtx/normalize_dot.inl (limited to 'depedencies/include/glm/gtx/normalize_dot.inl') diff --git a/depedencies/include/glm/gtx/normalize_dot.inl b/depedencies/include/glm/gtx/normalize_dot.inl deleted file mode 100644 index 0d01ffe..0000000 --- a/depedencies/include/glm/gtx/normalize_dot.inl +++ /dev/null @@ -1,17 +0,0 @@ -/// @ref gtx_normalize_dot -/// @file glm/gtx/normalize_dot.inl - -namespace glm -{ - template class vecType> - GLM_FUNC_QUALIFIER T normalizeDot(vecType const & x, vecType const & y) - { - return glm::dot(x, y) * glm::inversesqrt(glm::dot(x, x) * glm::dot(y, y)); - } - - template class vecType> - GLM_FUNC_QUALIFIER T fastNormalizeDot(vecType const & x, vecType const & y) - { - return glm::dot(x, y) * glm::fastInverseSqrt(glm::dot(x, x) * glm::dot(y, y)); - } -}//namespace glm -- cgit v1.2.3