///////////////////////////////////////////////////////////////////////////////////
/// OpenGL Mathematics (glm.g-truc.net)
///
/// Copyright (c) 2005 – 2015 G-Truc Creation (www.g-truc.net)
/// Permission is hereby granted, free of charge, to any person obtaining a copy
/// of this software and associated documentation files (the “Software”), to deal
/// in the Software without restriction, including without limitation the rights
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
/// copies of the Software, and to permit persons to whom the Software is
/// furnished to do so, subject to the following conditions:
///
/// The above copyright notice and this permission notice shall be included in
/// all copies or substantial portions of the Software.
///
/// Restrictions:
/// By making use of the Software for military purposes, you choose to make
/// a Bunny unhappy.
///
/// THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
/// THE SOFTWARE.
///
/// @ref gtx_vector_query
/// @file glm/gtx/vector_query.inl
/// @date 2008-03-10 / 2011-06-07
/// @author Christophe Riccio
///////////////////////////////////////////////////////////////////////////////////
#include
namespace glm{
namespace detail
{
template
struct compute_areCollinear{};
template
struct compute_areCollinear
{
GLM_FUNC_QUALIFIER static bool call(tvec2
{
return length(cross(tvec3
struct compute_areCollinear
{
GLM_FUNC_QUALIFIER static bool call(tvec3
{
return length(cross(v0, v1)) < epsilon;
}
};
template
struct compute_areCollinear
{
GLM_FUNC_QUALIFIER static bool call(tvec4
{
return length(cross(tvec3
struct compute_isCompNull{};
template
struct compute_isCompNull
{
GLM_FUNC_QUALIFIER static tvec2
{
return tvec2
(abs(v.x) < epsilon),
(abs(v.y) < epsilon));
}
};
template
struct compute_isCompNull
{
GLM_FUNC_QUALIFIER static tvec3
{
return tvec3
(abs(v.x) < epsilon),
(abs(v.y) < epsilon),
(abs(v.z) < epsilon));
}
};
template
struct compute_isCompNull
{
GLM_FUNC_QUALIFIER static tvec4
{
return tvec4
(abs(v.x) < epsilon),
(abs(v.y) < epsilon),
(abs(v.z) < epsilon),
(abs(v.w) < epsilon));
}
};
}//namespace detail
template
GLM_FUNC_QUALIFIER bool areCollinear
(
vecType
vecType
T const & epsilon
)
{
GLM_STATIC_ASSERT(std::numeric_limits
return detail::compute_areCollinear
}
template
GLM_FUNC_QUALIFIER bool areOrthogonal
(
vecType
vecType
T const & epsilon
)
{
GLM_STATIC_ASSERT(std::numeric_limits
return abs(dot(v0, v1)) <= max(
static_cast
length(v0)) * max(static_cast
}
template
GLM_FUNC_QUALIFIER bool isNormalized
(
vecType
T const & epsilon
)
{
GLM_STATIC_ASSERT(std::numeric_limits
return abs(length(v) – static_cast
}
template
GLM_FUNC_QUALIFIER bool isNull
(
vecType
T const & epsilon
)
{
GLM_STATIC_ASSERT(std::numeric_limits
return length(v) <= epsilon;
}
template
GLM_FUNC_QUALIFIER vecType
(
vecType
T const & epsilon
)
{
GLM_STATIC_ASSERT(std::numeric_limits
return detail::compute_isCompNull
}
template
GLM_FUNC_QUALIFIER tvec2
(
tvec2
T const & epsilon)
{
return tvec2
abs(v.x) < epsilon,
abs(v.y) < epsilon);
}
template
GLM_FUNC_QUALIFIER tvec3
(
tvec3
T const & epsilon
)
{
return tvec3
abs(v.x) < epsilon,
abs(v.y) < epsilon,
abs(v.z) < epsilon);
}
template
GLM_FUNC_QUALIFIER tvec4
(
tvec4
T const & epsilon
)
{
return tvec4
abs(v.x) < epsilon,
abs(v.y) < epsilon,
abs(v.z) < epsilon,
abs(v.w) < epsilon);
}
template
GLM_FUNC_QUALIFIER bool areOrthonormal
(
vecType
vecType
T const & epsilon
)
{
return isNormalized(v0, epsilon) && isNormalized(v1, epsilon) && (abs(dot(v0, v1)) <= epsilon);
}
}//namespace glm