aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/glm/gtx/mixed_product.inl
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/glm/gtx/mixed_product.inl')
-rw-r--r--src/include/glm/gtx/mixed_product.inl15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/include/glm/gtx/mixed_product.inl b/src/include/glm/gtx/mixed_product.inl
new file mode 100644
index 0000000..668246d
--- /dev/null
+++ b/src/include/glm/gtx/mixed_product.inl
@@ -0,0 +1,15 @@
+/// @ref gtx_mixed_product
+
+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