Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Eisel <julian@blender.org>2020-09-02 17:29:24 +0300
committerJulian Eisel <julian@blender.org>2020-09-02 17:31:23 +0300
commit279f7ad8ac193bc3a1656e992be23b2c7368b374 (patch)
tree0a732dd5045af06b749c99bd16b04ceb96dbb4e2 /source/blender/blenlib/intern/math_vector.c
parent9c3fa9965829a679acf2285cda3389fa0f08be7f (diff)
Cleanup: Correction to previous cleanup commit
I somehow undid these changes again before committing, sorry for the noise...
Diffstat (limited to 'source/blender/blenlib/intern/math_vector.c')
-rw-r--r--source/blender/blenlib/intern/math_vector.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/intern/math_vector.c b/source/blender/blenlib/intern/math_vector.c
index 4d35f1e34d4..dc6e213d0b5 100644
--- a/source/blender/blenlib/intern/math_vector.c
+++ b/source/blender/blenlib/intern/math_vector.c
@@ -708,12 +708,12 @@ void project_v3_v3v3_normalized(float out[3], const float p[3], const float v_pr
*
* Projecting will make \a out a copy of \a p orthogonal to \a v_plane.
*
- * \note If \a v is exactly perpendicular to \a v_plane, \a c will just be a copy of \a v.
+ * \note If \a p is exactly perpendicular to \a v_plane, \a out will just be a copy of \a p.
*
* \note This function is a convenience to call:
* \code{.c}
- * project_v3_v3v3(c, v, v_plane);
- * sub_v3_v3v3(c, v, c);
+ * project_v3_v3v3(out, p, v_plane);
+ * sub_v3_v3v3(out, p, out);
* \endcode
*/
void project_plane_v3_v3v3(float out[3], const float p[3], const float v_plane[3])