/*************************************************************************** * 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 std::string& str) : AtPointJoint(str) { } void RevoluteJoint::initializeGlobally() { if (constraints->empty()) { createAtPointConstraints(); addConstraint(CREATE::ConstraintWith(frmI, frmJ, 2, 0)); addConstraint(CREATE::ConstraintWith(frmI, frmJ, 2, 1)); this->root()->hasChanged = true; } else { Joint::initializeGlobally(); } }