Clarified comments in GTC_epsilon, issue #69
This commit is contained in:
@@ -54,7 +54,9 @@ namespace glm
|
||||
/// @addtogroup gtc_epsilon
|
||||
/// @{
|
||||
|
||||
/// Returns the component-wise compare of |x - y| < epsilon.
|
||||
/// Returns the component-wise comparison of |x - y| < epsilon.
|
||||
/// True if this expression is satisfied.
|
||||
///
|
||||
/// @see gtc_epsilon
|
||||
template <typename genType>
|
||||
typename genType::boolType epsilonEqual(
|
||||
@@ -62,7 +64,9 @@ namespace glm
|
||||
genType const & y,
|
||||
typename genType::value_type const & epsilon);
|
||||
|
||||
/// Returns the component-wise compare of |x - y| < epsilon.
|
||||
/// Returns the component-wise comparison of |x - y| < epsilon.
|
||||
/// True if this expression is satisfied.
|
||||
///
|
||||
/// @see gtc_epsilon
|
||||
template <typename genType>
|
||||
typename genType::boolType epsilonEqual(
|
||||
@@ -70,7 +74,9 @@ namespace glm
|
||||
genType const & y,
|
||||
genType const & epsilon);
|
||||
|
||||
/// Returns the component-wise compare of |x - y| < epsilon.
|
||||
/// Returns the component-wise comparison of |x - y| < epsilon.
|
||||
/// True if this expression is not satisfied.
|
||||
///
|
||||
/// @see gtc_epsilon
|
||||
template <typename genType>
|
||||
typename genType::boolType epsilonNotEqual(
|
||||
@@ -78,7 +84,9 @@ namespace glm
|
||||
genType const & y,
|
||||
typename genType::value_type const & epsilon);
|
||||
|
||||
/// Returns the component-wise compare of |x - y| >= epsilon.
|
||||
/// Returns the component-wise comparison of |x - y| >= epsilon.
|
||||
/// True if this expression is not satisfied.
|
||||
///
|
||||
/// @see gtc_epsilon
|
||||
template <typename genType>
|
||||
typename genType::boolType epsilonNotEqual(
|
||||
|
||||
Reference in New Issue
Block a user