Files
solver/MbDCode/InPlaneJoint.cpp
2023-07-16 22:00:07 -06:00

18 lines
330 B
C++

#include "InPlaneJoint.h"
#include "CREATE.h"
MbD::InPlaneJoint::InPlaneJoint()
{
}
MbD::InPlaneJoint::InPlaneJoint(const char* str)
{
}
void MbD::InPlaneJoint::createInPlaneConstraint()
{
auto tranCon = CREATE<TranslationConstraintIJ>::ConstraintWith(frmI, frmJ, 0);
tranCon->setConstant(offset);
addConstraint(tranCon);
}