33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
#include <fstream>
|
|
|
|
#include "ASMTPointInPlaneJoint.h"
|
|
#include "PointInPlaneJoint.h"
|
|
|
|
using namespace MbD;
|
|
|
|
std::shared_ptr<ASMTPointInPlaneJoint> MbD::ASMTPointInPlaneJoint::With()
|
|
{
|
|
auto asmt = std::make_shared<ASMTPointInPlaneJoint>();
|
|
asmt->initialize();
|
|
return asmt;
|
|
}
|
|
|
|
std::shared_ptr<ItemIJ> MbD::ASMTPointInPlaneJoint::mbdClassNew()
|
|
{
|
|
return CREATE<PointInPlaneJoint>::With();
|
|
}
|
|
|
|
void MbD::ASMTPointInPlaneJoint::storeOnTimeSeries(std::ofstream& os)
|
|
{
|
|
os << "PointInPlaneJointSeries\t" << fullName("") << std::endl;
|
|
ASMTItemIJ::storeOnTimeSeries(os);
|
|
}
|
|
|