Files
solver/MbDCode/ASMTRefPoint.h
2023-07-16 22:00:07 -06:00

21 lines
399 B
C++

#pragma once
#include "ASMTItem.h"
#include <vector>
#include <string>
#include "ASMTMarker.h"
namespace MbD {
class ASMTRefPoint : public ASMTItem
{
//
public:
void parseASMT(std::vector<std::string>& lines) override;
FColDsptr position3D;
FMatDsptr rotationMatrix;
std::shared_ptr<std::vector<std::shared_ptr<ASMTMarker>>> markers;
};
}