OndselSolver can read and write *.asmt files
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
#include <fstream>
|
||||
|
||||
#include "ASMTNoRotationJoint.h"
|
||||
#include "NoRotationJoint.h"
|
||||
@@ -15,3 +16,17 @@ std::shared_ptr<Joint> MbD::ASMTNoRotationJoint::mbdClassNew()
|
||||
{
|
||||
return CREATE<NoRotationJoint>::With();
|
||||
}
|
||||
|
||||
void MbD::ASMTNoRotationJoint::storeOnLevel(std::ofstream& os, int level)
|
||||
{
|
||||
storeOnLevelString(os, level, "NoRotationJoint");
|
||||
storeOnLevelString(os, level + 1, "Name");
|
||||
storeOnLevelString(os, level + 2, name);
|
||||
ASMTItemIJ::storeOnLevel(os, level);
|
||||
}
|
||||
|
||||
void MbD::ASMTNoRotationJoint::storeOnTimeSeries(std::ofstream& os)
|
||||
{
|
||||
os << "NoRotationJointSeries\t" << fullName("") << std::endl;
|
||||
ASMTItemIJ::storeOnTimeSeries(os);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user