MBDyn new joints, sine, cosine
This commit is contained in:
27
OndselSolver/MBDynInLineJoint.cpp
Normal file
27
OndselSolver/MBDynInLineJoint.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2023 Ondsel, Inc. *
|
||||
* *
|
||||
* This file is part of OndselSolver. *
|
||||
* *
|
||||
* See LICENSE file for details about copyright. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "MBDynInLineJoint.h"
|
||||
#include "ASMTPointInLineJoint.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
void MbD::MBDynInLineJoint::parseMBDyn(std::string line)
|
||||
{
|
||||
MBDynJoint::parseMBDyn(line);
|
||||
}
|
||||
|
||||
void MbD::MBDynInLineJoint::createASMT()
|
||||
{
|
||||
MBDynJoint::createASMT();
|
||||
}
|
||||
|
||||
std::shared_ptr<ASMTJoint> MbD::MBDynInLineJoint::asmtClassNew()
|
||||
{
|
||||
return std::make_shared<ASMTPointInLineJoint>();
|
||||
}
|
||||
Reference in New Issue
Block a user