/*************************************************************************** * Copyright (c) 2023 Ondsel, Inc. * * * * This file is part of OndselSolver. * * * * See LICENSE file for details about copyright. * ***************************************************************************/ #pragma once #include "ASMTMotion.h" #include "FullMotion.h" namespace MbD { class ASMTGeneralMotion : public ASMTMotion { // public: void parseASMT(std::vector& lines) override; void readrIJI(std::vector& lines); void readangIJJ(std::vector& lines); void readRotationOrder(std::vector& lines); std::shared_ptr mbdClassNew() override; void createMbD(std::shared_ptr mbdSys, std::shared_ptr mbdUnits) override; std::shared_ptr> rIJI, angIJJ; std::string rotationOrder; }; }