38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
|
|
#include "RevoluteJoint.h"
|
|
#include "System.h"
|
|
#include "AtPointConstraintIJ.h"
|
|
#include "DirectionCosineConstraintIJ.h"
|
|
#include "CREATE.h"
|
|
|
|
using namespace MbD;
|
|
|
|
RevoluteJoint::RevoluteJoint()
|
|
{
|
|
}
|
|
|
|
RevoluteJoint::RevoluteJoint(const char* str) : AtPointJoint(str)
|
|
{
|
|
}
|
|
|
|
void RevoluteJoint::initializeGlobally()
|
|
{
|
|
if (constraints->empty())
|
|
{
|
|
createAtPointConstraints();
|
|
addConstraint(CREATE<DirectionCosineConstraintIJ>::ConstraintWith(frmI, frmJ, 2, 0));
|
|
addConstraint(CREATE<DirectionCosineConstraintIJ>::ConstraintWith(frmI, frmJ, 2, 1));
|
|
this->root()->hasChanged = true;
|
|
}
|
|
else {
|
|
Joint::initializeGlobally();
|
|
}
|
|
}
|