diff options
Diffstat (limited to 'depedencies/include/glm/gtx/normal.inl')
-rw-r--r-- | depedencies/include/glm/gtx/normal.inl | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/depedencies/include/glm/gtx/normal.inl b/depedencies/include/glm/gtx/normal.inl deleted file mode 100644 index e442317..0000000 --- a/depedencies/include/glm/gtx/normal.inl +++ /dev/null @@ -1,16 +0,0 @@ -/// @ref gtx_normal -/// @file glm/gtx/normal.inl - -namespace glm -{ - template <typename T, precision P> - GLM_FUNC_QUALIFIER tvec3<T, P> triangleNormal - ( - tvec3<T, P> const & p1, - tvec3<T, P> const & p2, - tvec3<T, P> const & p3 - ) - { - return normalize(cross(p1 - p2, p1 - p3)); - } -}//namespace glm |