From e62817b8252974b8a98393275874ee303840bf13 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Fri, 12 May 2017 18:49:50 +0500 Subject: 2017-05-12 --- depedencies/include/glm/gtx/vector_query.inl | 193 +++++++++++++++++++++++++++ 1 file changed, 193 insertions(+) create mode 100644 depedencies/include/glm/gtx/vector_query.inl (limited to 'depedencies/include/glm/gtx/vector_query.inl') diff --git a/depedencies/include/glm/gtx/vector_query.inl b/depedencies/include/glm/gtx/vector_query.inl new file mode 100644 index 0000000..85ea5e5 --- /dev/null +++ b/depedencies/include/glm/gtx/vector_query.inl @@ -0,0 +1,193 @@ +/// @ref gtx_vector_query +/// @file glm/gtx/vector_query.inl + +#include + +namespace glm{ +namespace detail +{ + template class vecType> + struct compute_areCollinear{}; + + template + struct compute_areCollinear + { + GLM_FUNC_QUALIFIER static bool call(tvec2 const & v0, tvec2 const & v1, T const & epsilon) + { + return length(cross(tvec3(v0, static_cast(0)), tvec3(v1, static_cast(0)))) < epsilon; + } + }; + + template + struct compute_areCollinear + { + GLM_FUNC_QUALIFIER static bool call(tvec3 const & v0, tvec3 const & v1, T const & epsilon) + { + return length(cross(v0, v1)) < epsilon; + } + }; + + template + struct compute_areCollinear + { + GLM_FUNC_QUALIFIER static bool call(tvec4 const & v0, tvec4 const & v1, T const & epsilon) + { + return length(cross(tvec3(v0), tvec3(v1))) < epsilon; + } + }; + + template class vecType> + struct compute_isCompNull{}; + + template + struct compute_isCompNull + { + GLM_FUNC_QUALIFIER static tvec2 call(tvec2 const & v, T const & epsilon) + { + return tvec2( + (abs(v.x) < epsilon), + (abs(v.y) < epsilon)); + } + }; + + template + struct compute_isCompNull + { + GLM_FUNC_QUALIFIER static tvec3 call(tvec3 const & v, T const & epsilon) + { + return tvec3( + (abs(v.x) < epsilon), + (abs(v.y) < epsilon), + (abs(v.z) < epsilon)); + } + }; + + template + struct compute_isCompNull + { + GLM_FUNC_QUALIFIER static tvec4 call(tvec4 const & v, T const & epsilon) + { + return tvec4( + (abs(v.x) < epsilon), + (abs(v.y) < epsilon), + (abs(v.z) < epsilon), + (abs(v.w) < epsilon)); + } + }; + +}//namespace detail + + template class vecType> + GLM_FUNC_QUALIFIER bool areCollinear + ( + vecType const & v0, + vecType const & v1, + T const & epsilon + ) + { + GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'areCollinear' only accept floating-point inputs"); + + return detail::compute_areCollinear::call(v0, v1, epsilon); + } + + template class vecType> + GLM_FUNC_QUALIFIER bool areOrthogonal + ( + vecType const & v0, + vecType const & v1, + T const & epsilon + ) + { + GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'areOrthogonal' only accept floating-point inputs"); + + return abs(dot(v0, v1)) <= max( + static_cast(1), + length(v0)) * max(static_cast(1), length(v1)) * epsilon; + } + + template class vecType> + GLM_FUNC_QUALIFIER bool isNormalized + ( + vecType const & v, + T const & epsilon + ) + { + GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isNormalized' only accept floating-point inputs"); + + return abs(length(v) - static_cast(1)) <= static_cast(2) * epsilon; + } + + template class vecType> + GLM_FUNC_QUALIFIER bool isNull + ( + vecType const & v, + T const & epsilon + ) + { + GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isNull' only accept floating-point inputs"); + + return length(v) <= epsilon; + } + + template class vecType> + GLM_FUNC_QUALIFIER vecType isCompNull + ( + vecType const & v, + T const & epsilon + ) + { + GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isCompNull' only accept floating-point inputs"); + + return detail::compute_isCompNull::call(v, epsilon); + } + + template + GLM_FUNC_QUALIFIER tvec2 isCompNull + ( + tvec2 const & v, + T const & epsilon) + { + return tvec2( + abs(v.x) < epsilon, + abs(v.y) < epsilon); + } + + template + GLM_FUNC_QUALIFIER tvec3 isCompNull + ( + tvec3 const & v, + T const & epsilon + ) + { + return tvec3( + abs(v.x) < epsilon, + abs(v.y) < epsilon, + abs(v.z) < epsilon); + } + + template + GLM_FUNC_QUALIFIER tvec4 isCompNull + ( + tvec4 const & v, + T const & epsilon + ) + { + return tvec4( + abs(v.x) < epsilon, + abs(v.y) < epsilon, + abs(v.z) < epsilon, + abs(v.w) < epsilon); + } + + template class vecType> + GLM_FUNC_QUALIFIER bool areOrthonormal + ( + vecType const & v0, + vecType const & v1, + T const & epsilon + ) + { + return isNormalized(v0, epsilon) && isNormalized(v1, epsilon) && (abs(dot(v0, v1)) <= epsilon); + } + +}//namespace glm -- cgit v1.2.3