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

18 lines
737 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include "ASMTNoRotationJoint.h"
#include "NoRotationJoint.h"
using namespace MbD;
std::shared_ptr<Joint> MbD::ASMTNoRotationJoint::mbdClassNew()
{
return CREATE<NoRotationJoint>::With();
}