From 83889ba33dad2743eeb2a79102a1117ec9220025 Mon Sep 17 00:00:00 2001 From: LaG1924 Date: Mon, 7 Jun 2021 07:56:57 +0500 Subject: Replaced /external/ with CPMAddPackage --- external/include/glm/gtx/normal.inl | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 external/include/glm/gtx/normal.inl (limited to 'external/include/glm/gtx/normal.inl') diff --git a/external/include/glm/gtx/normal.inl b/external/include/glm/gtx/normal.inl deleted file mode 100644 index bcd74e5..0000000 --- a/external/include/glm/gtx/normal.inl +++ /dev/null @@ -1,16 +0,0 @@ -/// @ref gtx_normal -/// @file glm/gtx/normal.inl - -namespace glm -{ - template - GLM_FUNC_QUALIFIER vec<3, T, Q> triangleNormal - ( - vec<3, T, Q> const& p1, - vec<3, T, Q> const& p2, - vec<3, T, Q> const& p3 - ) - { - return normalize(cross(p1 - p2, p1 - p3)); - } -}//namespace glm -- cgit v1.2.3