mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-02 19:30:25 +00:00
Update glm
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
/// @ref gtx_mixed_product
|
||||
/// @file glm/gtx/mixed_product.inl
|
||||
|
||||
namespace glm
|
||||
{
|
||||
template <typename T, precision P>
|
||||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_QUALIFIER T mixedProduct
|
||||
(
|
||||
tvec3<T, P> const & v1,
|
||||
tvec3<T, P> const & v2,
|
||||
tvec3<T, P> const & v3
|
||||
vec<3, T, Q> const& v1,
|
||||
vec<3, T, Q> const& v2,
|
||||
vec<3, T, Q> const& v3
|
||||
)
|
||||
{
|
||||
return dot(cross(v1, v2), v3);
|
||||
|
||||
Reference in New Issue
Block a user