Files
solver/OndselSolver/PlanarJoint.cpp
2023-10-17 07:57:02 -06:00

36 lines
1.1 KiB
C++

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