mirror of
https://github.com/recp/cglm.git
synced 2025-10-04 09:08:53 +00:00
doc: improve briefs
This commit is contained in:
@@ -133,7 +133,7 @@ glms_vec2_min(vec2s v) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief check if all items are NaN (not a number)
|
* @brief check if one of items is NaN (not a number)
|
||||||
* you should only use this in DEBUG mode or very critical asserts
|
* you should only use this in DEBUG mode or very critical asserts
|
||||||
*
|
*
|
||||||
* @param[in] v vector
|
* @param[in] v vector
|
||||||
@@ -145,7 +145,7 @@ glms_vec2_(isnan)(vec2s v) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief check if all items are INFINITY
|
* @brief check if one of items is INFINITY
|
||||||
* you should only use this in DEBUG mode or very critical asserts
|
* you should only use this in DEBUG mode or very critical asserts
|
||||||
*
|
*
|
||||||
* @param[in] v vector
|
* @param[in] v vector
|
||||||
|
@@ -151,7 +151,7 @@ glms_vec3_(min)(vec3s v) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief check if all items are NaN (not a number)
|
* @brief check if one of items is NaN (not a number)
|
||||||
* you should only use this in DEBUG mode or very critical asserts
|
* you should only use this in DEBUG mode or very critical asserts
|
||||||
*
|
*
|
||||||
* @param[in] v vector
|
* @param[in] v vector
|
||||||
@@ -163,7 +163,7 @@ glms_vec3_(isnan)(vec3s v) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief check if all items are INFINITY
|
* @brief check if one of items is INFINITY
|
||||||
* you should only use this in DEBUG mode or very critical asserts
|
* you should only use this in DEBUG mode or very critical asserts
|
||||||
*
|
*
|
||||||
* @param[in] v vector
|
* @param[in] v vector
|
||||||
|
@@ -128,7 +128,7 @@ glm_vec2_min(vec2 v) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief check if all items are NaN (not a number)
|
* @brief check if one of items is NaN (not a number)
|
||||||
* you should only use this in DEBUG mode or very critical asserts
|
* you should only use this in DEBUG mode or very critical asserts
|
||||||
*
|
*
|
||||||
* @param[in] v vector
|
* @param[in] v vector
|
||||||
@@ -140,7 +140,7 @@ glm_vec2_isnan(vec2 v) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief check if all items are INFINITY
|
* @brief check if one of items is INFINITY
|
||||||
* you should only use this in DEBUG mode or very critical asserts
|
* you should only use this in DEBUG mode or very critical asserts
|
||||||
*
|
*
|
||||||
* @param[in] v vector
|
* @param[in] v vector
|
||||||
|
@@ -164,7 +164,7 @@ glm_vec3_min(vec3 v) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief check if all items are NaN (not a number)
|
* @brief check if one of items is NaN (not a number)
|
||||||
* you should only use this in DEBUG mode or very critical asserts
|
* you should only use this in DEBUG mode or very critical asserts
|
||||||
*
|
*
|
||||||
* @param[in] v vector
|
* @param[in] v vector
|
||||||
@@ -176,7 +176,7 @@ glm_vec3_isnan(vec3 v) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief check if all items are INFINITY
|
* @brief check if one of items is INFINITY
|
||||||
* you should only use this in DEBUG mode or very critical asserts
|
* you should only use this in DEBUG mode or very critical asserts
|
||||||
*
|
*
|
||||||
* @param[in] v vector
|
* @param[in] v vector
|
||||||
|
Reference in New Issue
Block a user