Files
solver/MbDCode/EulerParameters.h
2023-05-12 21:50:11 -06:00

17 lines
403 B
C++

#pragma once
#include "EulerArray.h"
#include "FullColumn.h"
#include "FullMatrix.h"
namespace MbD {
class EulerParameters : public EulerArray
{
//aA aB aC pApE
public:
static std::shared_ptr<FullMatrix<std::shared_ptr<FullColumn<double>>>> ppApEpEtimesColumn(FColDsptr col);
static std::shared_ptr<FullMatrix<std::shared_ptr<FullMatrix<double>>>> ppApEpEtimesMatrix(FMatDsptr col);
};
}