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

35 lines
1.0 KiB
C++

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