Files
solver/OndselSolver/MBDynPrismaticJoint.cpp
2024-04-03 08:56:40 +02:00

30 lines
954 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include "MBDynPrismaticJoint.h"
#include "ASMTNoRotationJoint.h"
using namespace MbD;
void MbD::MBDynPrismaticJoint::parseMBDyn(std::string line)
{
MBDynJoint::parseMBDyn(line);
}
void MbD::MBDynPrismaticJoint::createASMT()
{
MBDynJoint::createASMT();
}
std::shared_ptr<ASMTJoint> MbD::MBDynPrismaticJoint::asmtClassNew()
{
auto joint = ASMTNoRotationJoint::With();
joint->initialize();
return joint;
}