summaryrefslogtreecommitdiffstats
path: root/external/include/glm/gtx/normal.inl
diff options
context:
space:
mode:
Diffstat (limited to 'external/include/glm/gtx/normal.inl')
-rw-r--r--external/include/glm/gtx/normal.inl16
1 files changed, 0 insertions, 16 deletions
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<typename T, qualifier Q>
- 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