29 lines
960 B
C++
29 lines
960 B
C++
/***************************************************************************
|
|
* 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<std::string>& lines);
|
|
void readRotationMatrix(std::vector<std::string>& lines);
|
|
void readVelocity3D(std::vector<std::string>& lines);
|
|
void readOmega3D(std::vector<std::string>& lines);
|
|
|
|
FColDsptr position3D, velocity3D, omega3D;
|
|
FMatDsptr rotationMatrix;
|
|
|
|
};
|
|
}
|
|
|