Limits output issue.

This commit is contained in:
Aik-Siong Koh
2024-04-08 23:01:06 -06:00
parent 55963abe51
commit 8d3aecbcfb
31 changed files with 47 additions and 38 deletions

View File

@@ -22,7 +22,15 @@ void MbD::ASMTLimit::initMarkers()
void MbD::ASMTLimit::storeOnLevel(std::ofstream& os, size_t level)
{
assert(false);
ASMTItemIJ::storeOnLevel(os, level);
storeOnLevelString(os, level + 1, "MotionJoint");
storeOnLevelString(os, level + 2, motionJoint);
storeOnLevelString(os, level + 1, "Limit");
storeOnLevelString(os, level + 2, limit);
storeOnLevelString(os, level + 1, "Type");
storeOnLevelString(os, level + 2, type);
storeOnLevelString(os, level + 1, "Tol");
storeOnLevelString(os, level + 2, tol);
}
void MbD::ASMTLimit::readMotionJoint(std::vector<std::string>& lines)