Skip to content

Commit 6cbb397

Browse files
author
Paul Mitiguy
committed
Small name change.
1 parent f3a1cc1 commit 6cbb397

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

multibody/tree/rpy_ball_mobilizer.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -527,15 +527,15 @@ void RpyBallMobilizer<T>::DoMapQDDotToAcceleration(
527527
// --------------------------------------------------------------------------
528528
// Form the Ṅ⁺(q,q̇)⋅q̇ term of the result now (start of this function) so any
529529
// singularity (if one exists) throws an exception referencing this function.
530-
const Vector3<T> NplusDotTimesQdot =
530+
const Vector3<T> NplusDot_times_Qdot =
531531
CalcAccelerationBiasForQDDot(context, __func__);
532532

533533
// Although the function below was designed to calculate v = N⁺(q)⋅q̇, it can
534534
// also be used to calculate N⁺(q)⋅q̈.
535535
DoMapQDotToVelocity(context, qddot, vdot); // On return, vdot = N⁺(q)⋅q̈.
536536

537537
// Sum the previous terms to form v̇ = Ṅ⁺(q,q̇)⋅q̇ + N⁺(q)⋅q̈.
538-
*vdot += NplusDotTimesQdot;
538+
*vdot += NplusDot_times_Qdot;
539539
}
540540

541541
template <typename T>

0 commit comments

Comments
 (0)