Files
solver/OndselSolver/ASMTTranslationalMotion.h

30 lines
1.1 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "ASMTMotion.h"
namespace MbD {
class EXPORT ASMTTranslationalMotion : public ASMTMotion
{
//
public:
void parseASMT(std::vector<std::string>& lines) override;
void initMarkers() override;
void createMbD(std::shared_ptr<System> mbdSys, std::shared_ptr<Units> mbdUnits) override;
std::shared_ptr<Joint> mbdClassNew() override;
void readMotionJoint(std::vector<std::string>& lines);
void readTranslationZ(std::vector<std::string>& lines);
std::string motionJoint, translationZ;
};
}