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:25:20 +0300
committerJulian Eisel <julian@blender.org>2020-09-02 17:26:23 +0300
commit9c3fa9965829a679acf2285cda3389fa0f08be7f (patch)
tree0f34272c374ff138a916554f47384331e0dec8b6 /source/blender/blenlib/intern/math_vector.c
parent09ef19996509fff4694b65ba8a5146f543d2ec57 (diff)
Cleanup: Correct argument names in comment
Names were changed in 66b12ef4ab94, but the comment wasn't updated.
Diffstat (limited to 'source/blender/blenlib/intern/math_vector.c')
-rw-r--r--source/blender/blenlib/intern/math_vector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_vector.c b/source/blender/blenlib/intern/math_vector.c
index fb3ea539df1..4d35f1e34d4 100644
--- a/source/blender/blenlib/intern/math_vector.c
+++ b/source/blender/blenlib/intern/math_vector.c
@@ -706,7 +706,7 @@ void project_v3_v3v3_normalized(float out[3], const float p[3], const float v_pr
/**
* In this case plane is a 3D vector only (no 4th component).
*
- * Projecting will make \a c a copy of \a v orthogonal to \a v_plane.
+ * 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.
*