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

29 lines
528 B
C++

#include "SphSphJoint.h"
#include "CREATE.h"
#include "DistanceConstraintIJ.h"
#include "System.h"
using namespace MbD;
MbD::SphSphJoint::SphSphJoint()
{
}
MbD::SphSphJoint::SphSphJoint(const char* str) : CompoundJoint(str)
{
}
void MbD::SphSphJoint::initializeGlobally()
{
if (constraints->empty())
{
auto distxyIJ = CREATE<DistanceConstraintIJ>::With(frmI, frmJ);
distxyIJ->setConstant(distanceIJ);
addConstraint(distxyIJ);
this->root()->hasChanged = true;
}
else {
CompoundJoint::initializeGlobally();
}
}