Implement Limits

This commit is contained in:
Aik-Siong Koh
2024-04-02 14:30:25 -06:00
committed by PaddleStroke
parent 3a9e7cecab
commit ad4a563b42
184 changed files with 7716 additions and 6083 deletions

View File

@@ -12,7 +12,14 @@
using namespace MbD;
std::shared_ptr<Joint> MbD::ASMTPointInLineJoint::mbdClassNew()
std::shared_ptr<ASMTPointInLineJoint> MbD::ASMTPointInLineJoint::With()
{
auto asmt = std::make_shared<ASMTPointInLineJoint>();
asmt->initialize();
return asmt;
}
std::shared_ptr<ItemIJ> MbD::ASMTPointInLineJoint::mbdClassNew()
{
return CREATE<PointInLineJoint>::With();
}