• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/// @ref gtx_mixed_product
2/// @file glm/gtx/mixed_product.inl
3
4namespace glm
5{
6	template <typename T, precision P>
7	GLM_FUNC_QUALIFIER T mixedProduct
8	(
9		tvec3<T, P> const & v1,
10		tvec3<T, P> const & v2,
11		tvec3<T, P> const & v3
12	)
13	{
14		return dot(cross(v1, v2), v3);
15	}
16}//namespace glm
17