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

25 lines
393 B
C++

#include "PointInPlaneJoint.h"
#include "System.h"
using namespace MbD;
MbD::PointInPlaneJoint::PointInPlaneJoint()
{
}
MbD::PointInPlaneJoint::PointInPlaneJoint(const char* str)
{
}
void MbD::PointInPlaneJoint::initializeGlobally()
{
if (constraints->empty())
{
this->createInPlaneConstraint();
this->root()->hasChanged = true;
}
else {
InPlaneJoint::initializeGlobally();
}
}