17 lines
403 B
C++
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);
|
|
|
|
};
|
|
}
|
|
|