/*************************************************************************** * Copyright (c) 2023 Ondsel, Inc. * * * * This file is part of OndselSolver. * * * * See LICENSE file for details about copyright. * ***************************************************************************/ #pragma once #include "ASMTItem.h" namespace MbD { class ASMTSpatialItem : public ASMTItem { // public: void readPosition3D(std::vector& lines); void readRotationMatrix(std::vector& lines); void readVelocity3D(std::vector& lines); void readOmega3D(std::vector& lines); FColDsptr position3D, velocity3D, omega3D; FMatDsptr rotationMatrix; }; }