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:
authorBrecht Van Lommel <brecht@blender.org>2022-01-05 17:09:53 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-01-05 17:35:30 +0300
commit86141a75ebc5d0517edf71f2bc2fe7d0d13d8b5e (patch)
treeb42fe0b9d11fa59260ad68a9be000bea46f048f7 /intern/iksolver
parent29ab711efa01a94d7d407c29755cd697dbd02276 (diff)
Cleanup: fix typos in source code in intern/
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D13532
Diffstat (limited to 'intern/iksolver')
-rw-r--r--intern/iksolver/intern/IK_QJacobian.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/iksolver/intern/IK_QJacobian.cpp b/intern/iksolver/intern/IK_QJacobian.cpp
index 19d711f3fe1..7e4d48e37c9 100644
--- a/intern/iksolver/intern/IK_QJacobian.cpp
+++ b/intern/iksolver/intern/IK_QJacobian.cpp
@@ -196,12 +196,12 @@ void IK_QJacobian::InvertSDLS()
// Compute the dampeds least squeares pseudo inverse of J.
//
// Since J is usually not invertible (most of the times it's not even
- // square), the psuedo inverse is used. This gives us a least squares
+ // square), the pseudo inverse is used. This gives us a least squares
// solution.
//
// This is fine when the J*Jt is of full rank. When J*Jt is near to
// singular the least squares inverse tries to minimize |J(dtheta) - dX)|
- // and doesn't try to minimize dTheta. This results in eratic changes in
+ // and doesn't try to minimize dTheta. This results in erratic changes in
// angle. The damped least squares minimizes |dtheta| to try and reduce this
// erratic behavior.
//
@@ -323,7 +323,7 @@ void IK_QJacobian::InvertDLS()
// least squares solution. This is fine when the m_jjt is
// of full rank. When m_jjt is near to singular the least squares
// inverse tries to minimize |J(dtheta) - dX)| and doesn't
- // try to minimize dTheta. This results in eratic changes in angle.
+ // try to minimize dTheta. This results in erratic changes in angle.
// Damped least squares minimizes |dtheta| to try and reduce this
// erratic behavior.