File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -619,6 +619,8 @@ class Mobilizer : public MultibodyElement<T> {
619
619
// @param[in] vdot 1ˢᵗ time derivatives of generalized velocities (v̇).
620
620
// @param[out] qddot 2ⁿᵈ time derivatives of the generalized positions (q̈).
621
621
// Note: Generalized positions and velocities are stored in `context`.
622
+ // TODO(Mitiguy) change this function to a pure virtual function when it has
623
+ // been overridden in all subclasses.
622
624
virtual void MapVelocityDotToQDDot (const systems::Context<T>& context,
623
625
const Eigen::Ref<const VectorX<T>>& vdot,
624
626
EigenPtr<VectorX<T>> qddot) const ;
@@ -627,6 +629,8 @@ class Mobilizer : public MultibodyElement<T> {
627
629
// @param[in] qddot 2ⁿᵈ time derivatives of the generalized positions (q̈).
628
630
// @param[out] vdot 1ˢᵗ time derivatives of generalized velocities (v̇).
629
631
// Note: Generalized positions and velocities are stored in `context`.
632
+ // TODO(Mitiguy) change this function to a pure virtual function when it has
633
+ // been overridden in all subclasses.
630
634
virtual void MapQDDotToVelocityDot (const systems::Context<T>& context,
631
635
const Eigen::Ref<const VectorX<T>>& qddot,
632
636
EigenPtr<VectorX<T>> v) const ;
You can’t perform that action at this time.
0 commit comments