GRK/cw 3/dependencies/glm/gtx/handed_coordinate_space.inl
secret_dude a7bd7ecb75 master
2022-01-12 16:07:16 +01:00

28 lines
581 B
C++

/// @ref gtx_handed_coordinate_space
/// @file glm/gtx/handed_coordinate_space.inl
namespace glm
{
template <typename T, precision P>
GLM_FUNC_QUALIFIER bool rightHanded
(
tvec3<T, P> const & tangent,
tvec3<T, P> const & binormal,
tvec3<T, P> const & normal
)
{
return dot(cross(normal, tangent), binormal) > T(0);
}
template <typename T, precision P>
GLM_FUNC_QUALIFIER bool leftHanded
(
tvec3<T, P> const & tangent,
tvec3<T, P> const & binormal,
tvec3<T, P> const & normal
)
{
return dot(cross(normal, tangent), binormal) < T(0);
}
}//namespace glm