mirror of
https://github.com/recp/cglm.git
synced 2026-02-17 03:39:05 +00:00
remove unused params from docs
This commit is contained in:
@@ -324,26 +324,24 @@ Functions documentation
|
|||||||
| *[in]* **ori** orientation in world space as quaternion
|
| *[in]* **ori** orientation in world space as quaternion
|
||||||
| *[out]* **dest** result matrix
|
| *[out]* **dest** result matrix
|
||||||
|
|
||||||
.. c:function:: void glm_quat_for(vec3 dir, vec3 fwd, vec3 up, versor dest)
|
.. c:function:: void glm_quat_for(vec3 dir, vec3 up, versor dest)
|
||||||
|
|
||||||
| creates look rotation quaternion
|
| creates look rotation quaternion
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
| *[in]* **dir** direction to look
|
| *[in]* **dir** direction to look
|
||||||
| *[in]* **fwd** forward vector
|
|
||||||
| *[in]* **up** up vector
|
| *[in]* **up** up vector
|
||||||
| *[out]* **dest** result matrix
|
| *[out]* **dest** result matrix
|
||||||
|
|
||||||
.. c:function:: void glm_quat_forp(vec3 from, vec3 to, vec3 fwd, vec3 up, versor dest)
|
.. c:function:: void glm_quat_forp(vec3 from, vec3 to, vec3 up, versor dest)
|
||||||
|
|
||||||
| creates look rotation quaternion using source and destination positions p suffix stands for position
|
| creates look rotation quaternion using source and destination positions p suffix stands for position
|
||||||
|
|
||||||
| this is similar to glm_quat_for except this computes direction for glm_quat_for for you.
|
| this is similar to glm_quat_for except this computes direction for glm_quat_for for you.
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
| *[in]* **from** source point
|
| *[in]* **from** source point
|
||||||
| *[in]* **to** destination point
|
| *[in]* **to** destination point
|
||||||
| *[in]* **fwd** forward vector
|
|
||||||
| *[in]* **up** up vector
|
| *[in]* **up** up vector
|
||||||
| *[out]* **dest** result matrix
|
| *[out]* **dest** result matrix
|
||||||
|
|
||||||
|
|||||||
@@ -718,7 +718,6 @@ glm_quat_for(vec3 dir, vec3 up, versor dest) {
|
|||||||
*
|
*
|
||||||
* @param[in] from source point
|
* @param[in] from source point
|
||||||
* @param[in] to destination point
|
* @param[in] to destination point
|
||||||
* @param[in] fwd forward vector
|
|
||||||
* @param[in] up up vector
|
* @param[in] up up vector
|
||||||
* @param[out] dest destination quaternion
|
* @param[out] dest destination quaternion
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -437,7 +437,6 @@ glms_quat_look(vec3s eye, versors ori) {
|
|||||||
* @brief creates look rotation quaternion
|
* @brief creates look rotation quaternion
|
||||||
*
|
*
|
||||||
* @param[in] dir direction to look
|
* @param[in] dir direction to look
|
||||||
* @param[in] fwd forward vector
|
|
||||||
* @param[in] up up vector
|
* @param[in] up up vector
|
||||||
* @returns destination quaternion
|
* @returns destination quaternion
|
||||||
*/
|
*/
|
||||||
@@ -455,7 +454,6 @@ glms_quat_for(vec3s dir, vec3s up) {
|
|||||||
*
|
*
|
||||||
* @param[in] from source point
|
* @param[in] from source point
|
||||||
* @param[in] to destination point
|
* @param[in] to destination point
|
||||||
* @param[in] fwd forward vector
|
|
||||||
* @param[in] up up vector
|
* @param[in] up up vector
|
||||||
* @returns destination quaternion
|
* @returns destination quaternion
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user