File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ Identity FreeGroupFeatures::FindFreeGroupForModel(
44
44
if (skeleton->getRootJoint (i)->getType ()
45
45
!= dart::dynamics::FreeJoint::getStaticType () &&
46
46
skeleton->getRootJoint (i)->getType ()
47
- != " KinematicJoint " ) // gz::dynamics::KinematicJoint::getStaticType())
47
+ != gz::dynamics::KinematicJoint::getStaticType ())
48
48
{
49
49
return this ->GenerateInvalidId ();
50
50
}
@@ -89,7 +89,7 @@ Identity FreeGroupFeatures::FindFreeGroupForLink(
89
89
if (bn->getParentJoint ()->getType ()
90
90
== dart::dynamics::FreeJoint::getStaticType () ||
91
91
bn->getParentJoint ()->getType ()
92
- == " KinematicTag " ) // gz::dynamics::KinematicJoint::getStaticType())
92
+ == gz::dynamics::KinematicJoint::getStaticType ())
93
93
{
94
94
break ;
95
95
}
Original file line number Diff line number Diff line change @@ -672,7 +672,7 @@ Identity SDFFeatures::ConstructSdfLink(
672
672
const Eigen::Vector3d localCom =
673
673
math::eigen3::convert (sdfInertia.Pose ().Pos ());
674
674
675
- const bool isKinematic = true ; // TODO temporal fix for kinematic tag //_sdfLink.Kinematic();
675
+ const bool isKinematic = false ; // TODO temporal fix for kinematic tag //_sdfLink.Kinematic();
676
676
677
677
bodyProperties.mInertia .setLocalCOM (localCom);
678
678
You can’t perform that action at this time.
0 commit comments