Cleanup: Correct argument names in comment

Names were changed in 66b12ef4ab, but the comment wasn't updated.
This commit is contained in:
Julian Eisel 2020-09-02 16:25:20 +02:00
parent 09ef199965
commit 9c3fa99658
1 changed files with 1 additions and 1 deletions

View File

@ -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.
*