Files
solver/OndselSolver/ASMTUniversalJoint.cpp

18 lines
734 B
C++

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