diff options
Diffstat (limited to 'external/include/glm/gtx/mixed_product.inl')
-rw-r--r-- | external/include/glm/gtx/mixed_product.inl | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/external/include/glm/gtx/mixed_product.inl b/external/include/glm/gtx/mixed_product.inl deleted file mode 100644 index 01e94ec..0000000 --- a/external/include/glm/gtx/mixed_product.inl +++ /dev/null @@ -1,16 +0,0 @@ -/// @ref gtx_mixed_product -/// @file glm/gtx/mixed_product.inl - -namespace glm -{ - template<typename T, qualifier Q> - GLM_FUNC_QUALIFIER T mixedProduct - ( - vec<3, T, Q> const& v1, - vec<3, T, Q> const& v2, - vec<3, T, Q> const& v3 - ) - { - return dot(cross(v1, v2), v3); - } -}//namespace glm |