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/orthonormalize.inl | 30 -------------------------- 1 file changed, 30 deletions(-) delete mode 100644 depedencies/include/glm/gtx/orthonormalize.inl (limited to 'depedencies/include/glm/gtx/orthonormalize.inl') diff --git a/depedencies/include/glm/gtx/orthonormalize.inl b/depedencies/include/glm/gtx/orthonormalize.inl deleted file mode 100644 index 4796384..0000000 --- a/depedencies/include/glm/gtx/orthonormalize.inl +++ /dev/null @@ -1,30 +0,0 @@ -/// @ref gtx_orthonormalize -/// @file glm/gtx/orthonormalize.inl - -namespace glm -{ - template - GLM_FUNC_QUALIFIER tmat3x3 orthonormalize(tmat3x3 const & m) - { - tmat3x3 r = m; - - r[0] = normalize(r[0]); - - T d0 = dot(r[0], r[1]); - r[1] -= r[0] * d0; - r[1] = normalize(r[1]); - - T d1 = dot(r[1], r[2]); - d0 = dot(r[0], r[2]); - r[2] -= r[0] * d0 + r[1] * d1; - r[2] = normalize(r[2]); - - return r; - } - - template - GLM_FUNC_QUALIFIER tvec3 orthonormalize(tvec3 const & x, tvec3 const & y) - { - return normalize(x - y * dot(y, x)); - } -}//namespace glm -- cgit v1.2.3