[Bf-blender-cvs] [c19f3ea] master: Fixed comment.

Lukas Tönne noreply at git.blender.org
Mon May 4 14:31:52 CEST 2015


Commit: c19f3ea1b263f52add0604f94fde63bb54214dfa
Author: Lukas Tönne
Date:   Mon May 4 14:30:46 2015 +0200
Branches: master
https://developer.blender.org/rBc19f3ea1b263f52add0604f94fde63bb54214dfa

Fixed comment.

===================================================================

M	source/blender/blenlib/intern/math_matrix.c

===================================================================

diff --git a/source/blender/blenlib/intern/math_matrix.c b/source/blender/blenlib/intern/math_matrix.c
index 081c555..1360c73 100644
--- a/source/blender/blenlib/intern/math_matrix.c
+++ b/source/blender/blenlib/intern/math_matrix.c
@@ -2261,7 +2261,7 @@ void svd_m4(float U[4][4], float s[4], float V[4][4], float A_[4][4])
 
 void pseudoinverse_m4_m4(float Ainv[4][4], float A_[4][4], float epsilon)
 {
-	/* compute moon-penrose pseudo inverse of matrix, singular values
+	/* compute Moore-Penrose pseudo inverse of matrix, singular values
 	 * below epsilon are ignored for stability (truncated SVD) */
 	float A[4][4], V[4][4], W[4], Wm[4][4], U[4][4];
 	int i;




More information about the Bf-blender-cvs mailing list